speedtech-website/themes/lean/layouts/partials/home-blog-posts.html

13 lines
403 B
HTML
Raw Normal View History

{{ $projects := first 4 ((where .Site.RegularPages "Type" "blog").ByParam "LastmodDate") }}
{{ with $projects }}
<div class="row articles home" >
<h3 class="text-center">{{ i18n "latest_articles" }}</h3>
{{ range . }}
<div class="col s12 m12 l12 article">
{{ partial "partials/article-item-home.html" (dict "article" . "tags" "cattags") }}
</div>
{{ end }}
</div>
{{ end }}