{% extends "_base.html" %} {# Template: bibliography.html Description: Page de references bibliographiques avec citations formatees Variables: - title: Titre de la page (ex: "References bibliographiques") - introduction: Texte d'introduction - references: Liste de references [{authors, year, title, journal, volume, pages, doi, url, type}] - page_content_html: Contenu markdown converti en HTML (alternative aux references structurees) - categories: Categories pour filtrage [{id, label}] #} {% block title %}{{ title | default('Bibliographie') }} - {{ site.title | default('Niamoto') }}{% endblock %} {% block content %}

{{ title | default('References bibliographiques') }}

{% if introduction %}

{{ introduction }}

{% endif %} {% if page_content_html %}
{{ page_content_html | safe }}
{% endif %}
{% if categories %}
{% for cat in categories %} {% endfor %}
{% endif %}
{% if references %} BibTeX {% endif %}
{% if references %} {% for ref in references %}
{% if ref.type == 'book' %} {% elif ref.type == 'thesis' %} {% elif ref.type == 'report' %} {% else %} {% endif %}

{{ ref.authors }} ({{ ref.year }}). {{ ref.title }}. {% if ref.journal %}{{ ref.journal }}{% endif %} {% if ref.volume %}, {{ ref.volume }}{% endif %} {% if ref.pages %}: {{ ref.pages }}{% endif %}.

{% if ref.doi %} DOI {% endif %} {% if ref.url %} Lien {% endif %} {% if ref.pdf %} PDF {% endif %}
{{ ref.year }}
{% endfor %} {% else %}

Aucune reference disponible

{% endif %}
{% if references %}

{{ references | length }} reference(s) sur {{ references | length }}

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