theme/templates/tags.html

Fri, 06 Dec 2019 00:56:52 +0100

author
David Douard <david.douard@sdfa3.org>
date
Fri, 06 Dec 2019 00:56:52 +0100
changeset 123
6b5f7fb06a51
parent 36
9507107a1133
permissions
-rw-r--r--

Add images-src in hgignore

{% 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