|
@@ -24,23 +24,7 @@
|
|
|
</div>
|
|
|
<div class="span7 article-content">
|
|
|
{{ article.content }}
|
|
|
- <div class="row-fluid">
|
|
|
- <div class="span12">
|
|
|
- {% if article.tags %}
|
|
|
- <h4>Tags</h4>
|
|
|
- <ul class="list-of-tags">
|
|
|
- {% for tag in article.tags %}
|
|
|
- <li><a href="/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}
|
|
|
- {% for aTag, tagged_articles in tags if aTag == tag %}
|
|
|
- <span>{{ tagged_articles|count }}</span>
|
|
|
- {% endfor %}</a></li>
|
|
|
- {% endfor %}
|
|
|
- </ul>
|
|
|
- {% endif %}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
-
|
|
|
<div class="span2">
|
|
|
<div class="row-fluid">
|
|
|
<div class="span12">
|
|
@@ -66,6 +50,21 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <div class="row-fluid">
|
|
|
+ <div class="span12">
|
|
|
+ {% if article.tags %}
|
|
|
+ <h4>Tags</h4>
|
|
|
+ <ul class="list-of-tags">
|
|
|
+ {% for tag in article.tags %}
|
|
|
+ <li><a href="/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}
|
|
|
+ {% for aTag, tagged_articles in tags if aTag == tag %}
|
|
|
+ <span>{{ tagged_articles|count }}</span>
|
|
|
+ {% endfor %}</a></li>
|
|
|
+ {% endfor %}
|
|
|
+ </ul>
|
|
|
+ {% endif %}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<script type="text/javascript" language="JavaScript">
|