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: 0049765711296054d1b0d3b5d7762b27ca4f274c (plain)
1
2
3
4
5
6
7
8
{{ define "main" }}
{{$paginator := .Paginate (where .Site.Pages "Params.pinned" true).ByDate.Reverse 5 }}
{{ range $paginator.Pages }}
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<time>{{ dateFormat .Site.Params.theme.dateFormat .Date }}</time>
<p>{{ .Summary | truncate 200 }}</p>
{{ end }}
{{ end }}