Welcome to mirror list, hosted at ThFree Co, Russian Federation.

posts_list.html « partials « layouts - github.com/eshlox/simplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f67aceebc323047deb6c190b5209b2cf9e5376db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<ul class="post-list">
  {{ $paginator := .Paginate (where .Data.Pages "Type" "posts") }}
  {{ range $paginator.Pages }}
    <a href="{{ .Permalink | relURL }}" title="{{ .Title }}">
      <li>
        <span>{{ .Title }}</span>
        <span class="date">{{ .Date.Format "2006-01-02" }}</span>
      </li>
    </a>
  {{ end }}
</ul>
{{ partial "pagination.html" . }}