{% extends "index.html" %} {% block title %}Duniter | {{section.title}}{% endblock title %} {% block description %}{% endblock description %} {% block keywords %}{% if section.taxonomies.tags %}{% endif %}{% endblock keywords %} {% block extrahead %}{% endblock extrahead %} {% block content %}

{{ section.title }}

{{ section.content | safe }}
{% for person in section.extra.authors %}
{% set page = get_page(path="contributeurs/" ~ person ~ ".md") %}

{% if page.extra.full_name %} {{ page.extra.full_name }} {% else %} {{page.title}} {% endif %}

{{ page.description }}

{% endfor %}
{% endblock content %}