10 lines
304 B
HTML
10 lines
304 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/post.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|