first commit

This commit is contained in:
2025-06-25 15:43:30 +02:00
commit eb4f0a1736
511 changed files with 56019 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{{ with .Site.Data.testimonial}}
{{ if .enable}}
<section class="quotes">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="quotes-slider">
{{range .testimonial}}
<div class="quotes-slider-item">
<h2>{{ .testimonialDetails }}</h2>
<img src="{{ .testimonialImage }}" alt="{{ .testimonialDetails }}">
<span>-{{ .author }}</span>
</div>
{{end}}
</div>
</div>
</div>
</div>
</section>
{{end}}
{{end}}