12345678910111213141516171819202122232425262728293031323334 |
- {% extends "base.html" %}
- {% block title %}
- All Tags - {{ super() }}
- {% endblock title %}
- {% block content %}
- <div class="row-fluid">
- <header class="page_header span7 offset3">
- <h1>All Tags</h1>
- </header>
- </div>
- <div class="row-fluid">
- <div class="span7 offset3">
- <ul>
- {% for tag, articles in tags %}
- <li>
- {% set num = articles|count %}
- {{ num }}
- {% if num > 1 %}
- articles are
- {% else %}
- article is
- {% endif %}
- tagged <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
- </li>
- {% endfor %}
- </ul>
- </div>
- </div>
- {% endblock content %}
|