{% extends "base.html" %} {% block pagename %}Blog{% endblock %} {% block title %} {% if category == "blog" %} Tha blog {% endif %} {% if category == "tutos" %} Quelques tutos {% endif %} {% if category == "gnuragistes" %} À propos de nous {% endif %} {% endblock %} {% block subtitle %} {% if category == "blog" %} Quelques articles de gnuragistes. {% endif %} {% if category == "tutos" %} Pour partager nos expériences. {% endif %} {% if category == "gnuragistes" %} Pourquoi les gnuragistes, comment on fonctionne… {% endif %} {% endblock %} {% block description %} {% if category == "blog" %} Des idées, des avis, des souvenirs… {% endif %} {% if category == "tutos" %} Des trucs et astuces avec l'un ou l'autre outil. {% endif %} {% if category == "gnuragistes" %} Peut-être aussi vers quoi nous souhaiterions aller. {% endif %} {% endblock %} {% block content %} {% if articles_page %} {% for article in articles %}

{{ article.title }}
{{ article.author }}, le {{ article.date|strftime('%d %B %Y')}}{% if article.modified %}, modifié le {{ article.modified|strftime('%d %B %Y')}}{% endif %}

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