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

{% block pagetitle %}{% endblock %}

{% if articles %} {% for article in articles[0:3] %}
{% if not HIDE_DATE %} {% endif %}

{{ article.title }}

{{ article.content|striptags|truncate(200) }}
{% endfor %} {% for category, items in articles | groupby("category") %}

{% if category == "Lectures" %} 📖 {% elif category == "Notes" %} 📝 {% elif category == "Technologie" %} 💻 {% elif category == "Journal" %} 📔 {% endif %} {{ category }}

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