resilien/layouts/shortcodes/services.html

16 lines
560 B
HTML

<section class="section section-sm section-features">
<div class="container">
<div class="row justify-content-center text-center">
{{ range $service := index site.Data.services.services }}
<div class="col-12 col-lg-5 col-sm-6">
<h2 class="h4">
{{- $service.title -}}
</h2>
<p>{{ $service.description | markdownify }}</p>
<p class="text-muted"><small>Propulsé par <a href="{{ $service.tool.link }}">{{ $service.tool.name }}</a></small></p>
</div>
{{ end }}
</div>
</div>
</section>