Heuzef - Les notes excentriques d'un bidouilleur.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "base.html" %}
-
- {% block title %}
- Categories {{ super() }}
- {% endblock %}
-
- {% block page_header %}
- Categories
- {% endblock %}
-
- {% block content %}
- <table class="table table-bordered table-striped">
- {% for category, articles in categories|sort %}
- <tr>
- <td><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></td>
- <td>{{ articles|count }}</td>
- </tr>
- {% endfor %}
- </table>
- {% endblock %}
|