theme/templates/tags.html

Sat, 16 Apr 2016 19:22:34 +0200

author
David Douard <david.douard@logilab.fr>
date
Sat, 16 Apr 2016 19:22:34 +0200
changeset 47
c2a88ad9de68
parent 36
9507107a1133
permissions
-rw-r--r--

[ZPB30A1] new blog about the ZPB30A1

{% extends "base.html" %}

{% block title %}{{ SITENAME }} - Tags{% endblock %}

{% block content %}
    <h1>Tags for {{ SITENAME }}</h1>
    <ul class="tag-list">
    {%- for tag, articles in tags|sort %}
        <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
    {% endfor %}
    </ul>
{% endblock %}

{% block footer %}
{% include 'credits.html' %}
{% endblock %} 

mercurial