tags.html 371 B

1234567891011121314151617
  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - Tags{% endblock %}
  3. {% block content %}
  4. <section id="content" class="body">
  5. <h1>Tags for {{ SITENAME }}</h1>
  6. <ul>
  7. {% for tag, articles in tags|sort %}
  8. <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
  9. {% endfor %}
  10. </ul>
  11. </section>
  12. {% endblock %}