aboutsummaryrefslogblamecommitdiffhomepage
path: root/templates/tags/single.html
blob: 4062e4a8a708a980754f9ad209e0826dd5689218 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                           
{% extends "index.html" %}

{% block title %}#{{ term.name }}{% endblock title%}

{% block content %}
<h1>Tag: #{{ term.name }}</h1>

<ul>
    {% for page in term.pages %}
    <li>
        <a href="{{ page.permalink }}">{{ page.title }}</a>
    </li>
    {% endfor %}
</ul>

{% endblock content %}