reading/layouts/page/single.html
2020-11-03 19:16:16 -06:00

13 lines
178 B
HTML

{{- define "content" -}}
<h2>{{ .Title }}</h2>
<ul>
{{- range .Resources -}}
<li><a href="{{ .Permalink }}">{{ . }}</a></li>
{{- end -}}
</ul>
{{ .Content }}
{{- end -}}