tags.html 524 B

12345678910111213141516171819202122232425
  1. {% extends "base.html" %}
  2. {% block title %}
  3. All Tags - {{ super() }}
  4. {% endblock title %}
  5. {% block content %}
  6. <div class="row-fluid">
  7. <header class="page_header span7 offset3">
  8. <h1>All Tags</h1>
  9. </header>
  10. </div>
  11. <div class="row-fluid">
  12. <div class="span7 offset3">
  13. <ul>
  14. {% for tag, articles in tags %}
  15. <li>{{ articles|count }} articles in <a href="{{ SITEURL }}/{{ tag.url }}">{{ }}</a></li>
  16. {% endfor %}
  17. </ul>
  18. </div>
  19. </div>
  20. {% endblock content %}