pyro/templates/category.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

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 %}