6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/organisatie/section.html

23 lines
513 B
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
<section>
<h2>Actieve leden</h2>
{{ if .Params.active_members }}
{{ .Scratch.Set "active_members" .Params.active_members }}
{{ partial "show-active-members-small.html" . }}
{{ end }}
</section>
<section>
<p>Relevante pagina's:</p>
<ul>
{{ range .Pages }}
<li>
<a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title | default "Geen titel" }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}