2021-09-11 22:40:03 +00:00
|
|
|
{{- partial "header.html" . }}
|
|
|
|
{{- if eq .Kind "section" }}
|
2017-07-27 19:42:07 +00:00
|
|
|
|
2021-09-11 22:40:03 +00:00
|
|
|
{{ partial "content.html" . }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if or (eq .Kind "taxonomy") (eq .Kind "term") }}
|
|
|
|
<ul>
|
|
|
|
{{- range .Pages }}
|
|
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
{{- end }}
|
|
|
|
<footer class=" footline">
|
|
|
|
{{- with .Params.LastModifierDisplayName }}
|
|
|
|
<i class='fas fa-user'></i> <a href="mailto:{{ $.Params.LastModifierEmail }}">{{ . }}</a> {{ with $.Date }} <i class='fas fa-calendar'></i> {{ .Format "02/01/2006" }}{{ end }}
|
|
|
|
{{- end }}
|
|
|
|
</footer>
|
|
|
|
{{- partial "footer.html" . }}
|