
- 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.
12 lines
387 B
HTML
12 lines
387 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block page_title %}{{ SITENAME|striptags }} — Categories{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<h1>Toutes les categories</h1>
|
|
<ul>
|
|
{% for category, articles in categories|sort %}
|
|
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|