diff options
author | Audric Schiltknecht <storm@chemicalstorm.org> | 2014-05-09 12:13:44 +0200 |
---|---|---|
committer | Audric Schiltknecht <storm@chemicalstorm.org> | 2014-06-04 22:31:18 +0200 |
commit | 0891e0146f0dcf9e6db7ccce4376114c339fa5df (patch) | |
tree | f9981617b5fea1e0ac993a6fbe008e1cebfa7941 /themes/dev-urandom/templates/categories.html | |
parent | c710c428dad250a091f7decb0cb31928b0d25339 (diff) | |
download | schiltknecht.org-0891e0146f0dcf9e6db7ccce4376114c339fa5df.tar.gz schiltknecht.org-0891e0146f0dcf9e6db7ccce4376114c339fa5df.tar.bz2 schiltknecht.org-0891e0146f0dcf9e6db7ccce4376114c339fa5df.zip |
Import du thème 'dev-random2' pour modifications
Diffstat (limited to 'themes/dev-urandom/templates/categories.html')
-rw-r--r-- | themes/dev-urandom/templates/categories.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/dev-urandom/templates/categories.html b/themes/dev-urandom/templates/categories.html new file mode 100644 index 0000000..0a5b0f4 --- /dev/null +++ b/themes/dev-urandom/templates/categories.html @@ -0,0 +1,14 @@ +{% 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 -%} |