2015-07-19 02:04:01 +02:00
|
|
|
{% extends "base.html" %}
|
2015-07-20 04:34:54 +02:00
|
|
|
|
|
|
|
{% block meta %}
|
|
|
|
<meta name="author" content="{{ article.author.name }}" />
|
|
|
|
<meta name="description" content="{{ article.summary|striptags }}" />
|
|
|
|
<meta name="keywords" content="{{ article.tags|join(', ') }}">
|
|
|
|
{% include "partial/og_article.html" %}
|
2015-07-19 02:04:01 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2015-07-21 05:53:19 +02:00
|
|
|
{% block title %} – {{ article.title }}{% endblock %}
|
2015-07-19 02:04:01 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<h2 id="{{ article.slug }}">{{ article.title }}</h2>
|
|
|
|
<p>Posted on {{ article.locale_date }} in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></p>
|
|
|
|
</header>
|
2015-07-21 05:49:51 +02:00
|
|
|
{% if ADD_THIS_ID %}
|
|
|
|
<div class="addthis_sharing_toolbox"></div>
|
|
|
|
{% endif %}
|
2015-07-19 02:04:01 +02:00
|
|
|
<div>
|
|
|
|
{{ article.content }}
|
|
|
|
</div>
|
|
|
|
<div class="tag-cloud">
|
|
|
|
<p>
|
|
|
|
{% if article.tags %}
|
|
|
|
{% for tag in article.tags %}
|
|
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% include "partial/disqus.html" %}
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|
2015-07-20 04:34:54 +02:00
|
|
|
|
|
|
|
{% block additional_js %}
|
|
|
|
{% include "partial/jsonld_article.html" %}
|
|
|
|
{% endblock %}
|