Files
docs.a2v.space/themes/a2v/layouts/_default/list.html
T

13 lines
233 B
HTML

{{ define "main" }}
<div class="article-content">
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}