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.

service.html 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.service.service.enable}}
  3. {{ with $data.service.service}}
  4. {{"<!-- service -->" | safeHTML }}
  5. <section id="services" class="bg-one section">
  6. <div class="container">
  7. <div class="row justify-content-center">
  8. <div class="col-lg-12">
  9. {{"<!-- section title -->" | safeHTML }}
  10. <div class="title text-center wow fadeIn" data-wow-duration="500ms">
  11. <h2>{{ with .title }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span class="color">
  12. {{ with .title }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}</span></h2>
  13. <div class="border-meghna"></div>
  14. </div>
  15. </div>
  16. {{"<!-- /section title -->" | safeHTML }}
  17. {{ range .service_item}}
  18. {{"<!-- Single Service Item -->" | safeHTML }}
  19. <article class="col-lg-4 col-md-6 col-12 wow fadeInUp" data-wow-duration="500ms">
  20. <div class="service-block text-center">
  21. <div class="service-icon text-center">
  22. <i class="{{ .icon }}"></i>
  23. </div>
  24. <h3>{{ .name | markdownify }}</h3>
  25. <p>{{ .content | markdownify }}</p>
  26. </div>
  27. </article>
  28. {{"<!-- End Single Service Item -->" | safeHTML }}
  29. {{ end }}
  30. </div>
  31. </div>
  32. </section>
  33. {{"<!-- /service -->" | safeHTML }}
  34. {{ end }}
  35. {{ end }}