hugo-theme-hyde-hyde/layouts/partials/list_content.html
2018-01-24 16:42:50 +07:00

11 lines
321 B
HTML

<h1 class="title">{{ .Title }}</h1>
<ul class="posts">
{{ range where .Data.Pages "Section" "post" -}}
<li>
<span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<time class="pull-right post-list">{{ .Date.Format "Jan 2, 2006" }}</time>
</span>
</li>
{{- end }}
</ul>