Files
pelican-themes/dev-random2/templates/categories.html
2012-07-26 15:01:23 +02:00

15 lines
417 B
HTML

{% extends "base.html" %}
{% block title %}{{ super() }} — Catégories{% endblock title %}
{%- block content %}
<section class="content">
<h1>Catégories</h1>
<ul id="category-list">
{% for category, n in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ n|count }} articles)</li>
{% endfor %}
</ul>
</section>
{% endblock content -%}