speedtech-website/layouts/partials/clients.html

29 lines
931 B
HTML
Raw Permalink Normal View History

2024-10-04 11:58:15 +02:00
<section id="clients" class="section translucent-bg bg-image-2 pb-clear">
<div class="container object-non-visible" data-animation-effect="fadeIn">
<h2 class="title text-center">{{ i18n "home_clients_title" }}</h2>
<div class="space"></div>
<div class="row">
{{ with index .Site.Data.client .Site.Language.Lang }}
{{ range sort . "title" }}
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="{{ .flag }}">
</div>
<div class="media-body">
<h5 class="media-heading">{{ .title }}</h5>
<blockquote>
<p>{{ .description }}</p>
<footer>
<cite title="Technologies">{{ .technologies }}</cite>
</footer>
</blockquote>
</div>
</div>
</div>
{{ end }}
{{ end }}
</div>
</div>
</section>