2023-05-07 10:47:24 +02:00
|
|
|
<!doctype html>
|
2023-05-12 23:58:35 +02:00
|
|
|
<html{{ with site.LanguageCode | default site.Language.Lang }} lang="{{ . }}"{{ end }}>
|
2023-05-07 10:47:24 +02:00
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
2023-05-15 15:26:10 +02:00
|
|
|
<!-- Accessibility: skip-link voor mobiele apparaten -->
|
2023-05-07 10:47:24 +02:00
|
|
|
<a class="skip-link" href="#main">Ga naar hoofd</a>
|
|
|
|
<main id="main">
|
2023-06-27 10:33:26 +02:00
|
|
|
{{ partial "announcements.html" . }}
|
2023-06-21 15:34:33 +02:00
|
|
|
{{ partialCached "header.html" . }}
|
|
|
|
{{ partial "breadcrumb.html" . }}
|
2023-05-07 10:47:24 +02:00
|
|
|
<div class="content">
|
2023-06-21 15:34:33 +02:00
|
|
|
<h1 class="post speakable">{{ .Title }}</h1>
|
|
|
|
<div class="speakable">
|
2023-05-07 10:47:24 +02:00
|
|
|
{{- block "main" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{- end }}
|
2023-06-21 15:34:33 +02:00
|
|
|
</div>
|
2023-05-10 20:32:23 +02:00
|
|
|
|
|
|
|
{{ partial "show-call-to-action.html" . }}
|
|
|
|
|
|
|
|
{{ if isset .Params "show_child_pages" }}
|
|
|
|
{{ if eq .Params.show_child_pages true }}
|
2023-06-11 13:38:02 +02:00
|
|
|
{{ if (gt (.Pages | len) 0) }}
|
|
|
|
<section>
|
|
|
|
<h3>Gerelateerde pagina's</h3>
|
|
|
|
<ul>
|
|
|
|
{{ range .Pages.ByTitle }}
|
|
|
|
<li>
|
|
|
|
<a class="link" href="{{ .RelPermalink }}" title="{{ .Title }}">{{ .Title | default .Site.Params.textNoTitle }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2023-05-10 20:32:23 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2023-05-20 19:59:58 +02:00
|
|
|
{{ if .Params.tags }}
|
|
|
|
<section>
|
|
|
|
<h3>Tags</h3>
|
2023-05-21 00:42:05 +02:00
|
|
|
<div class="tags">
|
2023-05-20 19:59:58 +02:00
|
|
|
{{ $taxonomy := "tags" }} {{ with .Param $taxonomy }}
|
2023-05-21 00:42:05 +02:00
|
|
|
<ul>
|
2023-05-20 19:59:58 +02:00
|
|
|
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
|
2023-06-01 20:16:32 +02:00
|
|
|
<li><a href="{{ .RelPermalink }}">{{ $tag | urlize }}</a></li>
|
2023-05-20 19:59:58 +02:00
|
|
|
{{- end -}} {{- end -}}
|
2023-05-21 00:42:05 +02:00
|
|
|
</ul>
|
2023-05-20 19:59:58 +02:00
|
|
|
{{ end }}
|
2023-05-21 00:42:05 +02:00
|
|
|
</div>
|
2023-05-20 19:59:58 +02:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
2023-05-07 10:47:24 +02:00
|
|
|
</div>
|
|
|
|
</main>
|
2023-05-15 11:05:45 +02:00
|
|
|
{{ partial "footer.html" . }}
|
2023-06-01 10:44:30 +02:00
|
|
|
{{ if findRE `[zZ]oek|[sS]earch` .Title 1 }}
|
|
|
|
{{ partialCached "scripts_loadlast.html" . }}
|
|
|
|
{{ end }}
|
2023-05-07 10:47:24 +02:00
|
|
|
</body>
|
|
|
|
</html>
|