|
@ -52,14 +52,14 @@ |
|
|
{% if article.category %} |
|
|
{% if article.category %} |
|
|
<div class="categories"> |
|
|
<div class="categories"> |
|
|
<span itemprop="articleSection"> |
|
|
<span itemprop="articleSection"> |
|
|
→ <a href="{{ SITEURL }}/{{ article.category.url }}" rel="category">{{ article.category }}</a> |
|
|
→ <a href="/{{ article.category.url }}" rel="category">{{ article.category }}</a> |
|
|
</span> |
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
{% endif %} {% if article.tags %} |
|
|
{% endif %} {% if article.tags %} |
|
|
<div class="tags"> |
|
|
<div class="tags"> |
|
|
Tags: {% for tag in article.tags %} |
|
|
Tags: {% for tag in article.tags %} |
|
|
<span itemprop="keywords"> |
|
|
<span itemprop="keywords"> |
|
|
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a> |
|
|
<a href="/{{ tag.url }}" rel="tag">{{ tag }}</a> |
|
|
</span> {% endfor %} |
|
|
</span> {% endfor %} |
|
|
</div> |
|
|
</div> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|