{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% set current_lang = article.lang %} {% block head %} {{ super() }} {% endblock %} {% block title %}{{ super() }} — {{ multilang[article.category] }}{% endblock title %} {% block body_class %}{{ article.category }}{% endblock %} {% block fixed_content %} {% include 'partials/moon-watch.html' %} {% endblock %} {% block scroll_content %} {# ---> list all the 'projects' article in the current language #} {% for art in articles %} {% if art.category == 'projects' %} {% if current_lang == DEFAULT_LANG %} {{ art.title }} {% else %} {% for translation in art.translations %} {% if translation.lang == current_lang %} {{ translation.title }} {% endif %} {% endfor %} {% endif %} {% endif %} {% endfor %} {% if article.sections["main"] %} {{ article.sections["main"] }} {% else %} {{ article.content }} {% endif %} {% if article.sections["quotes"] %} {{ article.sections["quotes"] }} {% endif %} {% endblock %}