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

10 lines
277 B
HTML
Raw Normal View History

2017-09-07 19:41:16 +00:00
{{ define "main" -}}
<h1 class="title">Blog Posts</h1>
2017-09-07 19:41:16 +00:00
<ul class="posts">
{{ range .Data.Pages -}}
<li>
<span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Jan 2, 2006" }}</time></span>
2017-09-07 19:41:16 +00:00
</li>
{{- end }}
</ul>
{{- end }}