|
|
@ -4,49 +4,66 @@ |
|
|
|
{% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} |
|
|
|
|
|
|
|
{% block head %} |
|
|
|
{{ super() }} |
|
|
|
{{ super() }} |
|
|
|
|
|
|
|
{% import 'translations.html' as translations with context %} |
|
|
|
{% if translations.entry_hreflang(article) %} |
|
|
|
{{ translations.entry_hreflang(article) }} |
|
|
|
{% endif %} |
|
|
|
{% import 'translations.html' as translations with context %} |
|
|
|
{% if translations.entry_hreflang(article) %} |
|
|
|
{{ translations.entry_hreflang(article) }} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if article.description %} |
|
|
|
<meta name="description" content="{{article.description}}" /> |
|
|
|
{% endif %} |
|
|
|
{% if article.description %} |
|
|
|
<meta name="description" content="{{article.description}}" /> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% for tag in article.tags %} |
|
|
|
<meta name="tags" content="{{tag}}" /> |
|
|
|
{% endfor %} |
|
|
|
{% for tag in article.tags %} |
|
|
|
<meta name="tags" content="{{tag}}" /> |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
{% block content %} |
|
|
|
<section id="content" class="body"> |
|
|
|
<header> |
|
|
|
<h2 class="entry-title"> |
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" |
|
|
|
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> |
|
|
|
<header> |
|
|
|
<h2 class="entry-title"> |
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> |
|
|
|
{% import 'translations.html' as translations with context %} |
|
|
|
{{ translations.translations_for(article) }} |
|
|
|
</header> |
|
|
|
<footer class="post-info"> |
|
|
|
{% if article.category %} |
|
|
|
<div class="category"> |
|
|
|
Part of: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
{% if article.tags %} |
|
|
|
<div class="tags"> |
|
|
|
Tags: |
|
|
|
{% for tag in article.tags %} |
|
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> |
|
|
|
{% endfor %} |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
</footer> |
|
|
|
<div class="entry-content"> |
|
|
|
{{ article.content }} |
|
|
|
</div> |
|
|
|
</header> |
|
|
|
<footer class="post-info"> |
|
|
|
{% if article.category %} |
|
|
|
<div class="category"> |
|
|
|
Part of: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
{% if article.tags %} |
|
|
|
<div class="tags"> |
|
|
|
Tags: |
|
|
|
{% for tag in article.tags %} |
|
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> |
|
|
|
{% endfor %} |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
</footer> |
|
|
|
<div class="entry-content"> |
|
|
|
{{ article.content }} |
|
|
|
</div> |
|
|
|
|
|
|
|
<ul> |
|
|
|
{% if article.prev_article_in_category %} |
|
|
|
<li> |
|
|
|
<a href="{{ SITEURL }}/{{ article.prev_article_in_category.url}}"> |
|
|
|
{{ article.prev_article_in_category.title }} |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
{% endif %} |
|
|
|
{% if article.next_article_in_category %} |
|
|
|
<li> |
|
|
|
<a href="{{ SITEURL }}/{{ article.next_article_in_category.url}}"> |
|
|
|
{{ article.next_article_in_category.title }} |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
{% endif %} |
|
|
|
</ul> |
|
|
|
|
|
|
|
</section> |
|
|
|
{% endblock %} |
|
|
|