aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/category.html
blob: f00be70173d4f53c827390a94ca34d8f1da5480e (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}

{% block content %}
 <h1 class="page_title">Articles dans la catégorie «&thinsp;{{ category }}&thinsp;»</h1>
 {% if articles %}
    {% import 'abstract.html' as abstract with context %}
    {{ abstract.abstract("h2") }}
 {% endif %}

{% endblock %}