hugo-theme-hyde-hyde/layouts/partials/list_content.html
2018-01-25 16:57:13 +07:00

11 lines
298 B
HTML

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