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

list.html « posts « layouts - github.com/rafed/ramium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f4ee02a13c57096f49a1c9375fcf0a8a0e8c0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}

<div class="content">
    <h1 class="title is-3">{{ .Title }}</h1>
</div>

{{ $paginator := .Paginate (where .Site.RegularPages.ByDate.Reverse ".Section" "not in" "addons") .Site.Params.PaginatePostsPerPage }}
{{ range $paginator.Pages }}
{{- partial "blog-brief.html" . -}}
{{ end }}

{{- partial "pagination.html" . -}}

{{ end }}