2023-07-14 09:57:56 +00:00
|
|
|
|
{{ define "main" }}
|
2024-03-06 08:09:56 +00:00
|
|
|
|
<div class="team-presentation">
|
|
|
|
|
<div class="team-item">
|
|
|
|
|
|
2023-07-14 09:57:56 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-03-06 08:09:56 +00:00
|
|
|
|
|
|
|
|
|
<main class="page-container">
|
|
|
|
|
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
|
|
|
|
|
|
|
|
|
|
<p>2 méthodes d'adhésions possibles :</p>
|
|
|
|
|
<div class="adhesion-choice">
|
|
|
|
|
<a
|
|
|
|
|
class="adhesion-choice__item button button-light"
|
|
|
|
|
tabindex="0"
|
2023-07-14 09:57:56 +00:00
|
|
|
|
title="Adhérer sur Helloasso"
|
2024-03-06 08:09:56 +00:00
|
|
|
|
href="{{ .Site.Params.contact.helloasso_adhesion }}"
|
|
|
|
|
>
|
|
|
|
|
<div class="adhesion-choice__item__icon">
|
|
|
|
|
{{ partial "helpers/svg" (dict "path" "icons/helloasso") }}
|
|
|
|
|
</div>
|
|
|
|
|
<span>HelloAsso</span>
|
|
|
|
|
</a>
|
|
|
|
|
<a
|
|
|
|
|
class="adhesion-choice__item button button-light"
|
|
|
|
|
tabindex="0"
|
|
|
|
|
title="Adhérer avec bulletin papier (PDF)"
|
|
|
|
|
href="{{ .Site.Params.contact.paper_adhesion }}"
|
2023-07-14 09:57:56 +00:00
|
|
|
|
>
|
2024-03-06 08:09:56 +00:00
|
|
|
|
<div class="adhesion-choice__item__icon">
|
|
|
|
|
{{ partial "helpers/svg" (dict "path" "icons/write") }}
|
|
|
|
|
</div>
|
|
|
|
|
<span>Papier</span>
|
2023-07-14 09:57:56 +00:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2023-07-14 13:24:20 +00:00
|
|
|
|
|
2024-03-06 08:09:56 +00:00
|
|
|
|
{{ if .Content }}
|
|
|
|
|
<div>
|
|
|
|
|
{{ with .Content }}<div>{{ . }}</div>{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</main>
|
2023-07-14 13:24:20 +00:00
|
|
|
|
|
2023-07-14 09:57:56 +00:00
|
|
|
|
{{ end }}
|
|
|
|
|
|