blog-static/themes/vanilla/layouts/_default/list.html

10 lines
158 B
HTML
Raw Normal View History

2019-08-02 22:29:26 -07:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}