You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
387B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <ul class="circle">
  4. {% for tag, articles in tags|sort %}
  5. <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
  6. <ul class="square">
  7. {% for article in articles|sort %}
  8. <li><a href="{{ SITEURL }}/{{ article.url }}"><small>{{ article.title }}</small></li>
  9. {% endfor %}
  10. </ul>
  11. {% endfor %}
  12. </ul>
  13. {% endblock %}