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

  1. {{ if .Site.Data.testimonial.enable }}
  2. {{"<!-- Start Testimonial -->" | safeHTML}}
  3. <section id="members" class="testimonial overly section bg-2" style='background-image: url("{{ .Site.Data.testimonial.bgImage | absURL }}")'>
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-lg-12">
  7. {{"<!-- section title -->" | safeHTML}}
  8. <div class="title text-center wow fadeInDown">
  9. <h2> {{ with .Site.Data.testimonial.heading }} {{ . }}
  10. {{ end }} <span class="color"> {{ with .Site.Data.testimonial.headingSpan }} {{ . }} {{ end }} </span></h2>
  11. <div class="border-meghna"></div>
  12. </div>
  13. </div>
  14. {{"<!-- /section title -->" | safeHTML}}
  15. <div class="col-xl-12">
  16. {{"<!-- testimonial wrapper -->" | safeHTML}}
  17. <div id="testimonials" class="wow fadeInUp" data-wow-duration="500ms" data-wow-delay="100ms">
  18. {{ range .Site.Data.testimonial.testimonialItem }}
  19. {{"<!-- testimonial single -->" | safeHTML}}
  20. <div class="item text-center">
  21. {{"<!-- client photo -->" | safeHTML}}
  22. <div class="client-thumb">
  23. <img src="{{ .image | absURL }}" class="img-fluid" alt="Meghna">
  24. </div>
  25. {{"<!-- client info -->" | safeHTML}}
  26. <div class="client-info">
  27. <div class="client-meta">
  28. <h3>{{ .name }}</h3>
  29. <span>{{ .date }}</span>
  30. </div>
  31. <div class="client-comment">
  32. <p>{{ .content }}</p>
  33. </div>
  34. </div>
  35. </div>
  36. {{"<!-- /testimonial single -->" | safeHTML}}
  37. {{ end }}
  38. </div>
  39. </div>
  40. </div>
  41. </section>
  42. {{"<!-- /testimonial -->" | safeHTML}}
  43. {{ end }}