{% extends "base.html" %} {% block content %}

{% block pagetitle %}{% endblock %}

{% if articles %} {% for article in articles %} {% if loop.index <= DEFAULT_PAGINATION %}
{% if not HIDE_DATE %} {% endif %}

{% if article.category == "lectures" %}📖 {% endif %}{{ article.title }}

{{ article.content|striptags|truncate(200) }}
{% else %} {% if loop.index0 == DEFAULT_PAGINATION %}

Anciens articles...

{% endif %} {% endif %} {% endfor %} {% else %} No posts found. {% endif %} {% endblock content %}