hugo-toha/layouts/partials/recent-posts.html
2020-04-18 02:19:46 +06:00

10 lines
311 B
HTML

<div class="container-fluid recent-posts bg-white anchor pb-5">
<h1 class="text-center">Recent Posts</h1>
<div class="container">
<div class="row" id="recent-posts">
{{ range first 3 .Site.RegularPages }}
{{ partial "cards/recent-post.html" . }}
{{ end }}
</div>
</div>
</div>