yequari.com/themes/saturn/layouts/_default/list.html

12 lines
245 B
HTML
Raw Normal View History

2023-08-12 10:44:17 +00:00
{{ define "main" }}
<div id="sidebar"></div>
<article class="posts h-feed hfeed">
<h1>{{ .Title }}</h1>
<ul>
{{ range .Pages }}
<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
{{ end }}
</ul>
</article>
{{ end }}