hugo-theme-hyde-hyde/layouts/partials/list_content.html

12 lines
298 B
HTML
Raw Normal View History

2018-01-24 09:42:50 +00:00
<h1 class="title">{{ .Title }}</h1>
<ul class="posts">
2018-01-25 09:57:13 +00:00
{{ range .Data.Pages -}}
2018-01-24 09:42:50 +00:00
<li>
<span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<time class="pull-right post-list">{{ .Date.Format "Jan 2, 2006" }}</time>
</span>
</li>
{{- end }}
</ul>