recent-posts.html 378 B

12345678910
  1. <div class="container-fluid anchor pb-5" id="recent-posts">
  2. <h1 class="text-center">{{ .section.name }}</h1>
  3. <div class="container">
  4. <div class="row" id="recent-post-cards">
  5. {{ range first 3 (where site.RegularPages.ByDate.Reverse "Type" "in" site.Params.mainSections )}}
  6. {{ partial "cards/recent-post.html" . }}
  7. {{ end }}
  8. </div>
  9. </div>
  10. </div>