camp-homepage/themes/infinity-hugo/layouts/partials/service.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2020-07-06 22:09:52 +02:00
{{ if .Site.Params.service.enable }}
{{"<!-- Service Section -->" | safeHTML}}
<section id="{{ i18n "service" | urlize }}" class="service section">
<div class="container">
<div class="row">
<div class="heading wow fadeInUp">
{{ with .Site.Params.service.title }}
<h2>{{ . }}</h2>
{{ end }}
{{ with .Site.Params.service.subtitle }}
<p>{{ . }}</p>
{{ end }}
</div>
{{ range .Site.Params.service.serviceItem }}
2023-02-03 20:04:29 +01:00
{{ if .enable }}
2020-07-06 22:09:52 +02:00
<div class="col-sm-6 col-md-6 wow fadeInLeft" data-wow-delay="{{ .delay }}">
<div class="block">
2022-08-09 00:38:01 +02:00
<div class="{{ .icon }}"></div>
2020-07-06 22:09:52 +02:00
<h3>{{ .title }}</h3>
2020-08-20 10:49:09 +02:00
<p>{{ .description | safeHTML}}</p>
2020-07-06 22:09:52 +02:00
</div>
</div>
2023-02-03 20:04:29 +01:00
{{ end }}
2020-07-06 22:09:52 +02:00
{{ end }}
</div>
</div>
</section>
{{ end }}