|
@ -1,30 +1,26 @@ |
|
|
{% extends "base.html" %} |
|
|
{% extends "base.html" %} |
|
|
|
|
|
|
|
|
{% block head %} |
|
|
{% block head %} |
|
|
{{ super() }} |
|
|
{{ super() }} |
|
|
{% if article.description %} |
|
|
{% if article.description %} |
|
|
<meta name="description" content="{{article.description}}" /> |
|
|
<meta name="description" content="{{article.description}}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
|
|
|
|
|
|
{% if article.tags or article.category or article.keywords %} |
|
|
{% if article.tags or article.category or article.keywords %} |
|
|
<meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" /> |
|
|
<meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
<div class="file type_folder"> |
|
|
{% block content %} |
|
|
<a title="../" href="/log/" id="link0" class="type_folder"><img alt="../" src="/icons/back.png" class="type_folder"></a> |
|
|
<header id="banner"> |
|
|
</br> |
|
|
|
|
|
<span class="filename">../</span> |
|
|
|
|
|
|
|
|
|
|
|
{% block content %} |
|
|
|
|
|
<section id="content" class="body h-entry"> |
|
|
|
|
|
<header id="banner"> |
|
|
|
|
|
{% for p in pages %} |
|
|
{% for p in pages %} |
|
|
{% if p.title == 'header' %} |
|
|
{% if p.title == 'header' %} |
|
|
<div id="title">{{ p.content }}</div> |
|
|
<div id="title">{{ p.content }}</div> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</header> |
|
|
</header> |
|
|
|
|
|
|
|
|
|
|
|
<section id="content" class="body h-entry"> |
|
|
<div class="entry-title p-name"> |
|
|
<div class="entry-title p-name"> |
|
|
{{ article.title }} |
|
|
{{ article.title }} |
|
|
</div> |
|
|
</div> |
|
@ -37,7 +33,6 @@ |
|
|
{% set thumb_size =''%} |
|
|
{% set thumb_size =''%} |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
<img src="{{ article.featured_image | replace('images','images'+thumb_size) }}"> |
|
|
<img src="{{ article.featured_image | replace('images','images'+thumb_size) }}"> |
|
|
|
|
|
|
|
|
</a> |
|
|
</a> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
</div> |
|
|
</div> |
|
@ -57,24 +52,20 @@ |
|
|
{% if article.translations %} |
|
|
{% if article.translations %} |
|
|
<div class="article-translation"> |
|
|
<div class="article-translation"> |
|
|
{% for translation in article.translations %} |
|
|
{% for translation in article.translations %} |
|
|
{% if translation.lang == 'nl' %} |
|
|
{% if translation.lang == 'nl' %}<a href="{{ translation.url }}">Lees dit artikel in het Nederlands</a> |
|
|
<a href="{{ translation.url }}">Lees dit artikel in het Nederlands</a> |
|
|
|
|
|
{% endif %} |
|
|
{% endif %} |
|
|
|
|
|
{% if translation.lang == 'en' %}<a href="{{ translation.url }}">Read this article in English</a> |
|
|
{% if translation.lang == 'en' %} |
|
|
|
|
|
<a href="{{ translation.url }}">Read this article in English</a> |
|
|
|
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</div> |
|
|
</div> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="entry-content-container"> |
|
|
<div class="entry-content-container"> |
|
|
<div class="entry-content e-content"> |
|
|
<div class="entry-content e-content"> |
|
|
|
|
|
|
|
|
{{ article.content }} |
|
|
{{ article.content }} |
|
|
<div class="separator"><hr></div> |
|
|
<div class="separator"><hr></div> |
|
|
</div><!-- /.entry-content --> |
|
|
</div><!-- /.entry-content --> |
|
|
</div><!-- /.entry-content-container --> |
|
|
</div><!-- /.entry-content-container --> |
|
|
</section> |
|
|
</section> |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|