hugo-theme-console/layouts/_default/list.html

14 lines
371 B
HTML
Raw Normal View History

2020-04-30 20:02:40 +00:00
{{ define "main" }}
<h1>{{ .Page.Title }}</h1>
<br/>
{{ .Content }}
{{ range sort .Data.Pages "Date" "desc" }}
{{ if not .Params.private }}
<div class="post-list-date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
<h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
{{ .Summary }}
{{ end }}
{{ end }}
{{ end }}