erynwells.me/layouts/_default/term.html

32 lines
490 B
HTML
Raw Normal View History

2022-10-10 13:02:23 -07:00
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
<header class="page">
<h1>{{ .Title }}</h1>
2022-10-10 13:02:23 -07:00
</header>
{{- $hasContent := false -}}
{{ with .Content }}
{{- $hasContent = true -}}
<section>
{{ . }}
</section>
{{ end }}
{{ if $hasContent }}
<h2>Posts</h2>
{{ end }}
2022-10-10 13:02:23 -07:00
<ul>
{{- range .Pages -}}
2022-10-10 13:02:23 -07:00
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{- end -}}
2022-10-10 13:02:23 -07:00
</ul>
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}