This repository has been archived on 2024-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
portfolios_exemple3_abandon/themes/hugo-uilite/layouts/partials/services.html

20 lines
537 B
HTML
Raw Normal View History

2021-12-13 15:29:38 +01:00
{{ $services := .Site.Data.services }}
<section class="blue">
<h2 class="heading">{{ $services.title }}</h2>
<div class="row justify-content-md-center text-center">
{{ range $index, $element := $services.services }}
<div class="col-12 col-lg-6 col-md-6 mb-3">
<div class="card p-4">
<i class="mt-3 fa fa-{{ $element.icon }} fa-3x"></i>
<h5 class="mt-4">{{ $element.title }}</h5>
<p class="text-muted">{{ $element.description }}</p>
</div>
</div>
{{ end }}
</div>
</section>