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

pinnedPost.html « index « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfeef70fd9c5a9f393306b2b8047b8be2ed5fbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="pinned-post card shadow round-corner">
{{ if .Site.Params.theme.pinnedPosts }}
  {{ range ((where .Site.Pages "Params.pinned" true).ByDate.Reverse) | first 1 }}
    {{ partial "index/homePageArticle" . }}
  {{ end }}
  <hr class="red-hr"/>
  <div style="text-align: right; margin-bottom: 1em;">
  <a class="card-links"
    href="{{ `pinnedposts` | relURL }}"
    >Previously Pinned Posts</a
  ></div>
{{ else }}
  {{ range site.RegularPages | first 1 }}
    {{ partial "index/homePageArticle" . }}
  {{ end }}
{{ end }}
</div>