
- 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.
5 lines
200 B
HTML
5 lines
200 B
HTML
{% extends 'index.html' %}
|
|
{% block page_title %}{{ super() }} — {{ category|striptags }}{% endblock page_title %}
|
|
{% block title %}
|
|
<h1>Tous les posts dans {{ category }}</h1>
|
|
{% endblock title %}
|