|
@@ -90,13 +90,13 @@
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if article.category %}
|
|
{% if article.category %}
|
|
<h4>Category</h4>
|
|
<h4>Category</h4>
|
|
- <a class="category-link" href="/categories.html#{{ category|replace(' ', '-')|e }}-ref">{{ article.category }}</a>
|
|
|
|
|
|
+ <a class="category-link" href="{{ SITEURL }}/categories.html#{{ category|replace(' ', '-')|e }}-ref">{{ article.category }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if article.tags %}
|
|
{% if article.tags %}
|
|
<h4>Tags</h4>
|
|
<h4>Tags</h4>
|
|
<ul class="list-of-tags tags-in-article">
|
|
<ul class="list-of-tags tags-in-article">
|
|
{% for tag in article.tags|sort %}
|
|
{% for tag in article.tags|sort %}
|
|
- <li><a href="/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}
|
|
|
|
|
|
+ <li><a href="{{ SITEURL }}/tags.html#{{ tag|replace(' ', '-')|e }}-ref">{{ tag }}
|
|
{% for aTag, tagged_articles in tags if aTag == tag %}
|
|
{% for aTag, tagged_articles in tags if aTag == tag %}
|
|
<span>{{ tagged_articles|count }}</span>
|
|
<span>{{ tagged_articles|count }}</span>
|
|
{% endfor %}</a></li>
|
|
{% endfor %}</a></li>
|