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

pinnedPosts.html « section « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df67ed70d9d57d276729fa6edb1cd12019797e1b (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{$paginator := .Paginate (where .Site.Pages "Params.pinned" true).ByDate.Reverse 5 }}
{{ range $paginator.Pages }}
<h3><a href="{{ .Permalink }}" aria-label="{{ .Title }}">{{ .Title }}</a></h3>
<time>{{ dateFormat .Site.Params.theme.dateFormat .Date }}</time>
<p>{{ .Summary | truncate 200 }}</p>
{{ end }}
{{ end }}