{% extends "base.html" %} {% block title %}{{ SITENAME }} - {% trans %}All articles{% endtrans %} {%endblock%} {% block description %}{{ SITENAME }} - {% trans %}Find your interest and read the article you love.{% endtrans %} {%endblock%} {% block content %} {% block content_head %} {% endblock %} {% if articles %} {% for article in articles_page.object_list %} {% if loop.index == 1 %}

{{ article.title }}

{% import 'article_infos.html' as articleInfos with context %} {{ articleInfos.article_infos(article) }}
{% if loop.length <= 1 and articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% if loop.length > 1 %}
    {% endif %} {% else %}
  1. {{ article.title }}

    {% import 'article_infos.html' as articleInfos with context %} {{ articleInfos.article_infos(article) }}
  2. {% endif %} {% endfor %} {% if articles_page.object_list|length > 1 %}
{% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endif %} {% endif %} {% endblock content %} {% block getintouch_msg %} {% trans %}If you have a project in mind or you want to work with me or you want me to write about something you didn't find, Don't hesitate to contact me by writing an email or otherwise.{% endtrans %} {% endblock %}