{% extends "base.html" %} {% block meta %} {% include "partial/og_article.html" %} {% endblock %} {% block title %} – {{ article.title|striptags|escape }}{% endblock %} {% block content %}
{% if not ARTICLE_HIDE_TRANSLATION %} {% import 'partial/translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endif %} {% if 'pelican-page-hierarchy' in PLUGINS%} {% if article.parent %} {% endif %} {% endif %}

{{ article.title }}

{{ article.content }}
{{ _('Posted on %(when)s (modified on %(mod)s) in %(category)s', when=article.locale_date, mod=article.locale_modified, category='%s'|format(SITEURL, article.category.url, article.category)|safe) }}
{% if 'GIT_SOURCE_BASE_URL' %}
source icon source et documents
{% endif %}

{% if 'post_stats' in PLUGINS %} • {{ article.stats['read_mins'] }} min read {% endif %} {% if article.tags %} {% for tag in article.tags %} {{ tag }} {% endfor %} {% endif %}

{% include "partial/neighbors.html" %} {% if article.related_posts %} {% endif %}
{% endblock %}