{% extends "base.html" %} {% set has_right = True %} {% block title %} {{ article.title|striptags }} {% endblock %} {% block top_center %}

{{ article.title }}

{% endblock %} {% block right_sidebar %}

{{ article.locale_date }}

{% if AUTHOR_SAVE_AS and article.authors %}

By {% for author in article.authors %} {% endfor %}

{% endif %}
{% if article.category or article.tags %}

{% if article.category %} {% for category, articles in categories %} {% if category.url == article.category.url %} {% set article_counter = articles|length() %} {% endif %} {% endfor %} {% endif %} {% if article.tags %} {% set article_tags = [] %} {% for tag, articles in tags %} {% for t in article.tags %} {% if tag.url == t.url %} {% if article_tags.append({'name': tag.name, 'url': tag.url, 'articles': articles|length()}) %}{% endif %} {% endif %} {% endfor %} {% endfor %} {% for tag in article_tags|sort(reverse = True, attribute = 'articles') %} {{ m.render_tag(tag) }} {% endfor %} {% endif %}


{% endif %} {% if ARTICLE_EDIT_LINK %}

Found a typo ? Want to fix it ?

Edit article on GitHub
{% endif %} {% if article.prev_article or article.next_article %} {% endif %}
{% endblock %} {% block content %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{{ article.content }}
{% if article.related_posts %}

Related content

{% endif %} {% if SITEURL and DISQUS_SITENAME %}
{% endif %} {% endblock %}