recent-posts.html 394 B

12345678910
  1. <div class="container-fluid recent-posts bg-white anchor pb-5" id="recent-posts">
  2. <h1 class="text-center">Recent Posts</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>