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

16 lines
427 B
HTML
Raw Normal View History

2018-01-24 16:42:50 +07:00
<h1 class="title">{{ .Title }}</h1>
<ul class="posts">
2018-01-25 16:57:13 +07:00
{{ range .Data.Pages -}}
2018-01-24 16:42:50 +07:00
<li>
<span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
2018-03-30 10:49:07 +11:00
{{ if not .Date.IsZero }}
<time class="pull-right post-list">
2018-03-30 18:09:06 +11:00
{{- .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") -}}
2018-03-30 10:49:07 +11:00
</time>
{{end}}
2018-01-24 16:42:50 +07:00
</span>
</li>
{{- end }}
</ul>