hugo-theme-hyde-hyde/layouts/partials/list_content.html
2018-03-30 10:49:07 +11:00

19 lines
573 B
HTML

<h1 class="title">{{ .Title }}</h1>
<ul class="posts">
{{ range .Data.Pages -}}
<li>
<span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ if not .Date.IsZero }}
<time class="pull-right post-list">
{{- if isset .Site.Params "dateformat" -}}
{{ .Date.Format .Site.Params.dateformat }}
{{- else -}}
{{ .Date.Format "Jan 02 2006" }}
{{- end -}}
</time>
{{end}}
</span>
</li>
{{- end }}
</ul>