Files
hugo-profile/layouts/partials/sections/blog.html
T
gurusabarish b4294b0cc9 theme
2020-09-22 13:32:47 +05:30

25 lines
883 B
HTML

<section>
<div class="p-3 blog-back">
<div class="container">
<div class="text-center pb-3">
<h4>Recent posts</h4>
</div>
<div class="container">
<div class="row">
{{ range first 4 (where site.RegularPages.ByDate.Reverse "Type" "in" site.Params.mainSections )}}
<div class="col-lg-3 col-md-5 pb-3 post-card">
<a href="{{ .RelPermalink }}">
<span class="text-secondary">{{ .Date.Format "January 2, 2006" }}</span>
<div class="text-dark">
{{ .Title }}
</div>
</a>
</div>
{{ end }}
</div>
</div>
</div>
</div>
</section>