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

list.html « _default « layouts - github.com/yanlinlin82/simple-style.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1bb075d1ec18f0a13c60b30e854e905056a4a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" -}}
<div>
  <h1>{{ .Title }}</h1>
</div>
<ul>
  {{ range .Paginator.Pages -}}
  <li>{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02 15:04") }} - <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end -}}
</ul>
{{ template "_internal/pagination.html" . -}}
{{ end -}}