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: 9c1f74f1466d432555746e4f5decb698ce910e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" -}}
<div>
  <h1>{{ .Title }}</h1>
</div>
<ul class="article-list">
  {{ range .Paginator.Pages -}}
  <li class="article-item">
    <div class="article-date">{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02 15:04") }}</div>
    <div class="article-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></div>
  </li>
  {{ end -}}
</ul>
{{ template "_internal/pagination.html" . -}}
{{ end -}}