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

index.html « layouts - github.com/yanlinlin82/simple-style.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f8affa711ad91c6dc879a0dd782f29f1e1602d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" -}}
<div>
  {{ .Content -}}
</div>
<ul class="article-list">
  {{ range (.Paginate ( where .Site.RegularPages "Type" "in" site.Params.mainSections )).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 -}}