{% extends "base.html" %} {% block title %}Changelog{% endblock %} {% block content %}

Historique des versions — Alpinux Static

{% for sec in sections %}
v {{ sec.version }} {% if sec.date %}{{ sec.date }}{% endif %} {% if loop.first %}Actuelle{% endif %}
{% for grp in sec.groups %}
{{ grp.title }}
    {% for item in grp.items %}
  • {{ item }}
  • {% endfor %}
{% endfor %}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endblock %}