speedtech-website/layouts/partials/widgets/servicesidebar.html

11 lines
402 B
HTML
Raw Permalink Normal View History

2024-10-04 11:58:15 +02:00
<section>
{{ $projects := first 4 ((where (.Site.RegularPages.RelatedIndices . "services" ) "Type" "blogspot").ByLastmod ) }}
{{ with $projects }}
<h4 class="text-center">{{ i18n "related_projects" }}</h4>
{{ range . }}
<div class="col-12 article" style="text-align: center">
{{ partial "widgets/article.html" . }}
</div>
{{ end }}
{{ end }}
</section>