Site for my Call of Duty: Mobile clan.
http://codm.ataraxy.tk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.1 KiB
46 lines
2.1 KiB
{{ if .Site.Data.testimonial.enable }}
|
|
{{"<!-- Start Testimonial -->" | safeHTML}}
|
|
<section id="members" class="testimonial overly section bg-2" style='background-image: url("{{ .Site.Data.testimonial.bgImage | absURL }}")'>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
{{"<!-- section title -->" | safeHTML}}
|
|
<div class="title text-center wow fadeInDown">
|
|
<h2> {{ with .Site.Data.testimonial.heading }} {{ . }}
|
|
{{ end }} <span class="color"> {{ with .Site.Data.testimonial.headingSpan }} {{ . }} {{ end }} </span></h2>
|
|
<div class="border-meghna"></div>
|
|
</div>
|
|
</div>
|
|
{{"<!-- /section title -->" | safeHTML}}
|
|
|
|
<div class="col-xl-12">
|
|
{{"<!-- testimonial wrapper -->" | safeHTML}}
|
|
<div id="testimonials" class="wow fadeInUp" data-wow-duration="500ms" data-wow-delay="100ms">
|
|
{{ range .Site.Data.testimonial.testimonialItem }}
|
|
{{"<!-- testimonial single -->" | safeHTML}}
|
|
<div class="item text-center">
|
|
|
|
{{"<!-- client photo -->" | safeHTML}}
|
|
<div class="client-thumb">
|
|
<img src="{{ .image | absURL }}" class="img-fluid" alt="Meghna">
|
|
</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 }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{"<!-- /testimonial single -->" | safeHTML}}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{"<!-- /testimonial -->" | safeHTML}}
|
|
{{ end }}
|