bullet on author page
[Ultimately_Untrue_Thought.git] / theme / templates / tag.html
1 {% extends "base.html" %}
2 {% block title %}{{ tag }} • {{ SITENAME }}{% endblock %}
3
4 {% block content %}
5
6 <h1>Posts tagged: {{ tag }}</h1>
7
8 {% for article in articles_page.object_list %}
9   {% include 'article_summary.inc.html' %}
10 {% endfor %}
11
12 {% include 'pagination.inc.html' %}
13
14 {% endblock %}