SiteWebAstrolabe/src/_includes/layouts/team.njk
2020-07-15 23:06:10 +02:00

15 lines
419 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'layouts/base.njk' %}
{% set teamListItems = collections.members %}
{% block content %}
<main id="main-content" tabindex="-1">
<div class="[ wrapper ]">
<h1 class="[ member-list__heading ]">{{ teamListHeading }}</h1>
{{ content | safe }}
</div>
{% include "partials/components/member-list.njk" %}
{% include "partials/components/contact-form.njk" %}
</main>
{% endblock %}