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

20 lines
573 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>
2018-03-29 23:49:07 +00:00
{{ 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}}
2018-01-24 09:42:50 +00:00
</span>
</li>
{{- end }}
</ul>