simpletheme/layouts/_default/list.html
2020-04-02 15:07:23 +05:30

23 lines
425 B
HTML

<!DOCTYPE html>
<html>
{{ partial "head.html" . }}
<body>
{{ partial "page_header.html" . }}
<h3>Posts</h3>
<div>
<!-- orders content according to the "publishdate" field in front matter -->
{{ range .Pages.ByPublishDate }}
<div>
<a href="{{ .Permalink }}">{{ .Title }}</a><br />
<time>{{ .Date.Format "January 2, 2006" }}</time>
</div>
<br />
{{ end }}
</div>
</body>
</html>