site/themes/sitetheme/layouts/_default/list.html

16 lines
423 B
HTML
Raw Normal View History

2023-03-17 22:35:59 +00:00
{{ define "main" }}
<div class = "container border">
<div class = "section">
<div class = "content">
<h1 class="title">{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<ul>
<li><a href="{{ .Permalink }}">{{ .Title }} ({{ .Date | time.Format ":date_short" }})</a></li>
</ul>
{{ end }}
</div>
</div>
</div>
{{ end }}