23 lines
537 B
HTML
23 lines
537 B
HTML
{{ define "main" }}
|
|
{{ partial "hero-page.html" . }}
|
|
<main>
|
|
{{ with .Content }}
|
|
<article class="article-body">
|
|
{{ . }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ $ctx := . }}
|
|
<ul class="keywords">
|
|
{{- range $taxonomy, $terms := $ctx.Site.Taxonomies -}}
|
|
{{ with $ctx.Site.GetPage $taxonomy }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
<sub>{{ len $terms }}</sub>
|
|
</li>
|
|
{{- end }}
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }}
|