{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} {% block description %}{{ SITENAME }} - {{ article.summary|striptags }}{% endblock %} {% block meta_type %}article{%endblock%} {% block meta_extra %} {% if article.keywords %} {% elif article.tags %} {% endif %} {% if article.image %} {% endif %} {% if article.imagealt %} {% endif %} {% endblock %} {% block begin_body %} {% include 'facebook.html' %} {% endblock %} {% block content %} {% block content_head %} {% endblock %}
{{ article.content }}
{% include 'share_buttons.html' %}
{% if article.related_posts %}

{% trans %}Related posts{% endtrans %}

    {% for related_post in article.related_posts %}
  1. {{ related_post.title }}

    {% import 'article_infos.html' as articleInfos with context %} {{ articleInfos.article_infos(related_post) }}
  2. {% endfor %}
{% endif %} {% endblock content %} {% block getintouch_msg %} {% trans %}Don't be shy, do you have a question about something you didn't understand or something you think is missing from this article, contact us and we'll explain it.{% endtrans %} {% endblock %}