SiteWebAstrolabe/src/team-skills.njk
2021-11-09 19:24:23 +01:00

34 lines
843 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.

---
title: 'L''équipe Astrolabe'
pagination:
data: collections
size: 1
alias: tag
filter:
- post
- news
- event
- customer
- partner
permalink: /equipe/{{ tag }}/
---
{% extends 'layouts/base.njk' %}
{% set teamListItems = collections[tag] %}
{% block content %}
<main id="main-content" tabindex="-1">
<div class="[ wrapper ]">
<h1 class="[ member-list__heading ]">{{ teamListHeading }}</h1>
{{ content | safe }}
<h2 class="[ gap-top-700 ]">Profils par mot-clé : <span class="tag-item">{{ tag }}</span></h2>
</div>
{% include "partials/components/member-list.njk" %}
<div class="wrapper box-flex justify-end">
<a class="return-link" href="/equipe">Voir tous les membres</a>
</div>
{% include "partials/components/contact-form.njk" %}
</main>
{% endblock %}