Adding a webring section to the sidebar.

This commit is contained in:
Jeff MacKinnon 2022-04-27 08:11:43 -03:00
parent 542775a080
commit 7b46df8467

View file

@ -107,6 +107,18 @@
{% endfor %} {% endfor %}
</section> </section>
{% if WEBRING_FEED_URLS %}
<section>
<div class="webring">
<h2>Webring</h2>
{% for article in webring_articles %}
<p><a href="{{ article.link }}">{{ article.title }}</a></p>
<p>{{ article.date|strftime('%d %B %Y') }}<!-- - {{ article.summary}}--></p>
{% endfor %}
</div>
{% endif %}
</section>
{% if CONTACT_EMAIL or CONTACT_PHONE_NUM or CONTACT_HOME_ADDR %} {% if CONTACT_EMAIL or CONTACT_PHONE_NUM or CONTACT_HOME_ADDR %}
<section> <section>
<header class="major"> <header class="major">