23 lines
781 B
HTML
23 lines
781 B
HTML
{{ define "main" }}
|
|
<div class="container">
|
|
<h1>{{ .RenderString .Title }}</h1>
|
|
<div class="container md">
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="cards">
|
|
{{ block "list" . }}
|
|
{{ range sort .Pages "Permalink" }}
|
|
{{ if .Params.bureau }}
|
|
<a href="{{ .Permalink }}" class="card {{ if isset .Params "theme" }}{{ .Params.theme }}{{ end }}">
|
|
<h2>{{ .RenderString .Title }}</h2>
|
|
</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="container md">
|
|
<p>Vous ne retrouvez pas votre association ? Une modification, faute, ou un changement de contact, n'hésitez pas à nous écrire à l'adresse {{ "[com@cremeaux.fr](mailto:com@cremeaux.fr)" | markdownify }}.</p>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|