sqrtminusone.github.io/themes/researcher/layouts/_default/list.html
2021-08-29 16:01:58 +05:00

10 lines
250 B
HTML

{{ define "main" }}
<div class="container">
<h1>{{ .Title }}</h1>
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Date.Format "2006-01-02" }} | {{ .Title }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}