|
@@ -63,11 +63,25 @@ All Tags - {{ super() }}
|
|
{% for tag, articles in tags %}
|
|
{% for tag, articles in tags %}
|
|
<li>
|
|
<li>
|
|
{% set num = articles|count %}
|
|
{% set num = articles|count %}
|
|
- <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}<span>{{ num }}</span></a>
|
|
|
|
|
|
+ <a href="/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}<span>{{ num }}</span></a>
|
|
</li>
|
|
</li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
+<div class="row-fluid">
|
|
|
|
+ <div class="span7 offset3">
|
|
|
|
+ {% for tag, articles in tags %}
|
|
|
|
+ <h2 id="{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}</h2>
|
|
|
|
+ <ul>
|
|
|
|
+ {% for article in articles %}
|
|
|
|
+ <li><a href="{{ article.url }}">{{ article.title }}</a></li>
|
|
|
|
+ {% endfor %}
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ {% endfor %}
|
|
|
|
+ </div>
|
|
|
|
+</div>
|
|
|
|
+
|
|
{% endblock content %}
|
|
{% endblock content %}
|