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">
|
|
|
|
<div class="content">
|
2023-05-07 19:48:04 +02:00
|
|
|
{{ partialCached "header.html" . }}
|
2023-05-15 15:26:10 +02:00
|
|
|
{{ partial "breadcrumb.html" . }}
|
2023-05-07 10:47:24 +02:00
|
|
|
<!-- <h2 class="post">{{ .Title }}</h2> -->
|
|
|
|
{{- block "main" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{- end }}
|
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-05-16 23:36:11 +02:00
|
|
|
<section>
|
2023-05-18 13:03:01 +02:00
|
|
|
<h3>Gerelateerde pagina's</h3>
|
2023-05-16 23:36:11 +02:00
|
|
|
<ul>
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li>
|
|
|
|
<a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title | default .Site.Params.textNoTitle }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
2023-05-10 20:32:23 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2023-05-07 10:47:24 +02:00
|
|
|
{{ if eq .Section "posts" }}
|
2023-05-18 13:03:01 +02:00
|
|
|
<section>
|
|
|
|
<h3>Tags</h3>
|
|
|
|
<div class="post-date">
|
|
|
|
<span class="g time">{{.Date.Format "January 2, 2006"}} </span> ∙
|
|
|
|
{{ $taxonomy := "tags" }} {{ with .Param $taxonomy }}
|
|
|
|
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
|
|
|
|
<a href="{{ .Permalink }}">{{ $tag | urlize }}</a>
|
|
|
|
{{- end -}} {{- end -}}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2023-05-07 10:47:24 +02:00
|
|
|
</section>
|
2023-05-18 13:03:01 +02:00
|
|
|
{{ end }}
|
|
|
|
|
2023-05-07 10:47:24 +02:00
|
|
|
</div>
|
|
|
|
</main>
|
2023-05-15 11:05:45 +02:00
|
|
|
{{ partial "footer.html" . }}
|
2023-05-07 10:47:24 +02:00
|
|
|
</body>
|
2023-05-18 13:03:01 +02:00
|
|
|
{{ partialCached "scripts_loadlast.html" . }}
|
|
|
|
|
2023-05-07 10:47:24 +02:00
|
|
|
</html>
|