feat: Bully
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-04-18 01:27:07 +02:00
parent 2a3f37e508
commit f0aeb335e1
18 changed files with 212 additions and 33 deletions

View File

@ -0,0 +1,13 @@
<div class="grid actualites -middle">
{{ if .Page.IsHome }}
{{ $pages := first 4 (where .Site.RegularPages "Type" "projets") }}
{{ range $pages }}
{{ partial "projet" . }}
{{ end }}
{{ else }}
{{ $pages := where .Site.RegularPages "Type" "projets" }}
{{ range $pages }}
{{ partial "projet" . }}
{{ end }}
{{ end }}
</div>