mirror of https://github.com/luizdepra/hugo-coder.git

Luiz de Prá
23.28.2018 853492596dd78dedb755e66db8d79d01e13c66b2
1
2
3
4
5
6
7
8
9
10
11
<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>