Reeks aan verbeteringen om actieve leden en teamleden te tonen

This commit is contained in:
Michael Boelen 2023-05-08 15:04:22 +02:00
parent 3f36e036d0
commit a0599f1143
18 changed files with 137 additions and 10 deletions

View file

@ -1,12 +1,20 @@
{{ 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 class="list">
<ul>
{{ range .Pages }}
<li>
<a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}
</a>
<a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title | default "Geen titel" }}</a>
</li>
{{ end }}
</ul>