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

26 lines
1.0 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 }}
<div class="col-sm-6 col-md-6 wow fadeInLeft" data-wow-delay="{{ .delay }}">
<div class="block">
<i class="{{ .icon }}"></i>
<h3>{{ .title }}</h3>
<p>{{ .description }}</p>
</div>
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}