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/_default/baseof.html

55 lines
1.9 KiB
HTML

<!doctype html>
<html{{ with site.LanguageCode | default site.Language.Lang }} lang="{{ . }}"{{ end }}>
{{ partial "head.html" . }}
<body>
<!-- Accessibility: skip-link voor mobiele apparaten -->
<a class="skip-link" href="#main">Ga naar hoofd</a>
<main id="main">
<div class="content">
{{ partialCached "header.html" . }}
{{ partial "breadcrumb.html" . }}
<!-- <h2 class="post">{{ .Title }}</h2> -->
{{- block "main" . }}
{{ .Content }}
{{- end }}
{{ partial "show-call-to-action.html" . }}
{{ if isset .Params "show_child_pages" }}
{{ if eq .Params.show_child_pages true }}
<section>
<h3>Gerelateerde pagina's</h3>
<ul>
{{ range .Pages }}
<li>
<a class="link" href="{{ .RelPermalink }}" title="{{ .Title }}">{{ .Title | default .Site.Params.textNoTitle }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}
{{ end }}
{{ if .Params.tags }}
<section>
<h3>Tags</h3>
<div class="tags">
{{ $taxonomy := "tags" }} {{ with .Param $taxonomy }}
<ul>
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
<li><a href="{{ .RelPermalink }}">{{ $tag | urlize }}</a></li>
{{- end -}} {{- end -}}
</ul>
{{ end }}
</div>
</section>
{{ end }}
</div>
</main>
{{ partial "footer.html" . }}
{{ if findRE `[zZ]oek|[sS]earch` .Title 1 }}
{{ partialCached "scripts_loadlast.html" . }}
{{ end }}
</body>
</html>