feat: Mise à jour du contenu et ajout des services
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-02-28 11:59:39 +01:00
committed by Simon
parent a6ca129e67
commit 25b73e570b
5 changed files with 176 additions and 20 deletions

View File

@ -0,0 +1,15 @@
<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>