blog.lonjil.xyz/layouts/_default/list.html

15 lines
328 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<article>
<h3><a class="title" href="{{ .Permalink }}">{{ .Title }}</a></h3>
{{ .Summary }}
{{ .PublishDate.Format "2006-01-02" }} —
{{ if isset .Params "tags" }}
{{ delimit .Params.tags ", " }}
{{ end }}
</article>
<br />
{{ end }}
{{ end }}