Update: Abschluss 31.07.2025

This commit is contained in:
astosic 2025-07-31 01:33:44 +02:00
parent 4f1e5eddac
commit b18d1e9169
8 changed files with 350 additions and 443 deletions

View file

@ -0,0 +1,32 @@
{{ with site.GetPage .page }}
{{ with .Params.service }}
<section class="section">
<div class="my-container">
<div class="section-title text-center">
<h1>{{ .title | markdownify }}</h1>
<h2>{{ .description | markdownify }}</h2>
</div>
<div class="responsive-grid mt-4 {{ if eq $.type "zoom" }}service-grid{{ end }}">
{{ range .service_item }}
{{ if eq $.type "zoom" }}
<div class="service-item zoom-wrap">
<a href="{{ .link | relURL }}">
<img src="{{ .picture | relURL }}" alt="{{ .name }}">
<div class="overlay"></div>
<div class="overlay-text responsive-text">{{ .name }}</div>
</a>
</div>
{{ else }}
<div class="info-card">
<i class="{{ .icon }}" aria-hidden="true"></i>
<h3>{{ .name | markdownify }}</h3>
<p>{{ .content | markdownify }}</p>
</div>
{{ end }}
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}