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.

testimonial.html 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {{ if .Site.Data.testimonial.enable }}
  2. {{"<!-- Start Testimonial -->" | safeHTML}}
  3. <section id="testimonial" 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. {{"<!-- testimonial wrapper -->" | safeHTML}}
  8. <div id="testimonials" class="wow fadeInUp" data-wow-duration="500ms" data-wow-delay="100ms">
  9. {{ range .Site.Data.testimonial.testimonialItem }}
  10. {{"<!-- testimonial single -->" | safeHTML}}
  11. <div class="item text-center">
  12. {{"<!-- client photo -->" | safeHTML}}
  13. <div class="client-thumb">
  14. <img src="{{ .image | absURL }}" class="img-responsive" alt="Meghna">
  15. </div>
  16. {{"<!-- client info -->" | safeHTML}}
  17. <div class="client-info">
  18. <div class="client-meta">
  19. <h3>{{ .name }}</h3>
  20. <span>{{ .date }}</span>
  21. </div>
  22. <div class="client-comment">
  23. <p>{{ .content }}</p>
  24. </div>
  25. </div>
  26. </div>
  27. {{"<!-- /testimonial single -->" | safeHTML}}
  28. {{ end }}
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </section>
  35. {{"<!-- /testimonial -->" | safeHTML}}
  36. {{ end }}