bop-hugo-theme/layouts/_default/list.html

16 lines
288 B
HTML
Raw Normal View History

2020-10-14 01:00:50 +02:00
{{ define "main" }}
<section>
<h2>{{ .Title }}</h2>
{{ with .Content }}
{{ . }}
{{ end }}
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}