pyro/templates/archives.html
Freyja Wildes 955ad775d3 Complete base theme with missing template and polish style
- Change archives templates to be clean and present a simple list of all
  articles
- Banner : add bottom margin to space the content
- Banner : add specific condition for page, categories and tags
  respectively DISPLAY_PAGES_ON_MENU, DISPLAY_CATEGORIES_ON_MENU,
  DISPLAY_TAGS_ON_MENU so the user can fine tune what appears in the
  menu
- Banner : add condition on SITEAVATAR to not display it if it's not
  defined. Default is None.
2025-02-27 10:33:16 +01:00

11 lines
340 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'index.html' %}
{% block title %}{{ super() }} — Archives {% endblock title %}
{% block content %}
<h1>Archives</h1>
{% for article in dates %}
<ul>
<li><em>{{ article.date.strftime("%Y/%m/%d") }}</em> <a href="{{ article.url }}">{{ article.title }}</a> par {{ article.author }}</li>
</ul>
{% endfor %}
{% endblock %}