Render .Content on series pages

This commit is contained in:
Eryn Wells 2023-02-05 10:06:58 -08:00
parent b5768770de
commit 202d8177be
2 changed files with 20 additions and 3 deletions

View file

@ -7,6 +7,12 @@
<h1>{{ .Title }}</h1>
</header>
{{ with .Content }}
<section>
{{ . }}
</section>
{{ end }}
<ul>
{{- range .Pages -}}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>