Basic logic for a list of personnel

This commit is contained in:
2024-01-10 00:55:48 +01:00
parent d1dcc8e6d6
commit e49f2fa39e
3 changed files with 19 additions and 0 deletions

View File

@ -7,3 +7,10 @@
{% endif %}
{% endfor %}
{% endmacro %}
{% macro personnel() %}
{% for person in section.pages %}
{{ person.extra.name }}
{{ person.extra.role }}
{% endfor %}
{% endmacro %}