website-old/themes/ch0ccy-in-the-nineties/layouts/_default/list.html
2023-03-13 14:34:18 -07:00

17 lines
No EOL
482 B
HTML

{{ define "main" }}
<div>
<div>
<div class="section">
<div class="content">
<h1 class="title">{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<ul style="list-style-type: none; padding: 0; margin: 0;">
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
</ul>
{{ end }}
</div>
</div>
</div>
</div>
{{ end }}