{% extends "_base.html" %} {# Template: article.html Description: Article avec sidebar et table des matieres (methodologie, publications) Variables: - title: Titre de l'article - subtitle: Sous-titre optionnel - author: Auteur de l'article - date: Date de publication - toc: Table des matieres (generee automatiquement si non fournie) - page_content_html: Contenu markdown converti en HTML - related_links: Liens connexes [{title, url}] #} {% block title %}{{ title | default('Article') }} - {{ site.title | default('Niamoto') }}{% endblock %} {% block styles %} {% endblock %} {% block content %}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}
{% if author %} {{ author }} {% endif %} {% if date %} {{ date }} {% endif %}
{% if page_content_html %}
{{ page_content_html | safe }}
{% else %}

(Aucun contenu disponible pour cet article)

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}