Files
website/themes/hugo-coder/layouts/partials/list.html
T

12 lines
292 B
HTML
Raw Normal View History

2018-05-13 22:04:36 +05:30
<section class="container list">
<h1 class="title">{{ .Title }}</h1>
<ul>
{{ range .Paginator.Pages }}
<li>
<span>{{ .Date.Format "January 2, 2006" }}</span><a href="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ partial "pagination.html" . }}
</section>