speedtech-website/layouts/partials/home-bottom.html

19 lines
734 B
HTML
Raw Normal View History

<section id="home-bottom">
<div class="container">
<h2>{{ i18n "services_title" }}</h2>
<div class="row">
2024-10-04 11:58:15 +02:00
{{ range (where .Site.RegularPages "Type" "service").ByParam "position" }}
<div class="col m6 l6 service">
2024-10-04 11:58:15 +02:00
<div class="align-items-start" style="margin-right: 20px;">
<a href="{{ .Permalink | relURL }}" title="{{ .Title }}"><i class="{{ .Params.menu.main.params.iconClass }} fa-2x"></i></a>
</div>
<div>
<h4><a href="{{ .Permalink | relURL }}">{{ .Title }}</a></h4>
<p><a href="{{ .Permalink | relURL }}">{{ .Params.shortDescription}}</a></p>
</div>
</div>
{{ end }}
<!-- Row -->
</div>
</div>
2024-10-04 11:58:15 +02:00
</section>