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

recentPost.html « index « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7578c0f7e2daede547de649a5b321b04aefd4a48 (plain)
1
2
3
4
5
6
7
8
9
<h3>Recent Posts</h3>
<div class="recent-posts home-page-card">
  {{ range ((where .Site.Pages "Kind" "page").ByDate.Reverse) | first 6 }}
  {{ partial "listPage" . }}
  {{ end }}
  <div class="home-page-card-links">
    <a href="{{ `archive` | relURL }}">All Posts</a>
  </div>
</div>