first commit

This commit is contained in:
2025-06-25 15:43:30 +02:00
commit eb4f0a1736
511 changed files with 56019 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{{ with .Site.Data.service}}
{{ if .enable}}
<section class="service" id="service">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2> {{.title }} </h2>
<p>
{{.subtitle}}
</p>
</div>
</div>
{{ range .services}}
<div class="col-lg-4 col-md-6">
<div class="service-item">
<i class="{{ .icon }}" aria-hidden="true"></i>
<h3>{{ .name }}</h3>
<p>
{{.description }}
</p>
</div>
</div>
{{end}}
</div>
</div>
</section>
{{end}}
{{end}}