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

16 lines
423 B
HTML

{{ 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 }}