{% extends "base.html" %} {% block content %}
MAZ
DEV
DIR

Digital
Nomad's
Journal

{% set ns = namespace(year=0) %} {% for article in articles %} {% if article.category != "devlog" %} {% set article_year = article.date.strftime('%Y') %} {% set is_article_year_new = ns.year != article_year %} {% if ns.year != article_year %} {% set ns.year = article_year %}

{{ article_year }}

{% endif %}
{{ article.date.strftime('%-d') }}

{{ article.title }}

{{ article.category }}

{% endif %} {% endfor %}
{% endblock content %}