jarnat/themes/meghna-hugo/layouts/partials/testimonial.html

45 lines
1.6 KiB
HTML

{{ $data := index site.Data site.Language.Lang }}
{{ if $data.testimonial.testimonial.enable }}
{{ with $data.testimonial.testimonial }}
{{"<!-- Start Testimonial -->" | safeHTML}}
<section id="testimonial" class="testimonial overly section bg-2"
style='background-image: url("{{ .bg_image_webp | absURL }}")'>
<!-- this image is for trigger this section fallback background image -->
<img src="{{ .bg_image_webp | absURL }}" style="display: none;" onerror="this.onerror=null;this.parentElement.style.backgroundImage= 'url({{ .bg_image | absURL }})'">
<div class="container">
<div class="row">
<div class="col-xl-12">
{{"<!-- testimonial wrapper -->" | safeHTML}}
<div id="testimonials" class="wow fadeInUp" data-wow-duration="500ms" data-wow-delay="100ms">
{{ range .testimonial_item }}
{{"<!-- testimonial single -->" | safeHTML}}
<div class="item text-center">
{{"<!-- client photo -->" | safeHTML}}
<div class="client-thumb">
<img class="img-fluid" src="{{ .image_webp | absURL }}" onerror="this.onerror=null;this.src='{{ .image | absURL }}'" alt="{{ .name }}" loading="lazy">
</div>
{{"<!-- client info -->" | safeHTML}}
<div class="client-info">
<div class="client-meta">
<h3>{{ .name }}</h3>
<span>{{ .date }}</span>
</div>
<div class="client-comment">
<p>{{ .content | markdownify }}</p>
</div>
</div>
</div>
{{"<!-- /testimonial single -->" | safeHTML}}
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{"<!-- /testimonial -->" | safeHTML}}
{{ end }}
{{ end }}