|
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{ .Content }}
|
|
</article>
|
|
<ul>
|
|
<!-- Ranges through the term pages -->
|
|
{{ range .Pages }}
|
|
{{- partial "list.html" . -}}
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }}
|