SiteWebAstrolabe/src/team-skills.njk

39 lines
1.0 KiB
Plaintext
Raw Permalink 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 }}
<div class="[ box-flex align-center fw-400 ]">
<h2>Profils avec le mot-clé : </h2>
<span class="tag-item ml-1">{{ tag }}</span>
<a class="ml-1 link fw-600" href="/equipe/">tout</a></h2>
</div>
</div>
{% include "partials/components/member-list-simple.njk" %}
<div class="wrapper box-flex justify-end">
<a class="return-link" href="/equipe/">Voir tous les membres</a>
</div>
{% include "partials/components/map.njk" %}
{% include "partials/components/contact-form.njk" %}
</main>
{% endblock %}