no-js.club/layouts/_default/list.html

19 lines
381 B
HTML

{{ define "main" }}
<main>
<article>
<header>
<h1>{{.Title}}</h1>
</header>
{{.Content}}
</article>
<ul>
{{ range .Pages }}
<li>
{{ .PublishDate.Format "2006-01-02" }} &ndash;
<a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</main>
{{ end }}