2025-05-02 15:06:02 +02:00
|
|
|
<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" }}
|
2025-05-02 15:06:02 +02:00
|
|
|
<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>
|
2025-05-02 15:06:02 +02:00
|
|
|
</div>
|
2024-10-04 11:58:15 +02:00
|
|
|
</section>
|