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.

about.html 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.about.about.enable }}
  3. {{ with $data.about.about }}
  4. {{"<!-- Start About Section -->" | safeHTML}}
  5. <section class="bg-one about section" id="about">
  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="1500ms">
  11. <h2> {{ with .title }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span class="color">
  12. {{ with .title }} {{ index (split . " ") 1 | safeHTML }} {{ end }} </span></h2>
  13. <div class="border-meghna"></div>
  14. </div>
  15. </div>
  16. {{"<!-- /section title -->" | safeHTML}}
  17. {{ range .about_item }}
  18. {{"<!-- About item -->" | safeHTML}}
  19. <div class="col-lg-4 text-center wow fadeInUp" data-wow-duration="500ms">
  20. <div class="block">
  21. <div class="icon-box">
  22. {{with .icon}}<i class="{{ . }}"></i>{{ end }}
  23. </div>
  24. {{"<!-- Express About Yourself -->" | safeHTML}}
  25. <div class="content text-center">
  26. <h3>{{ .title }}</h3>
  27. <p>{{ .content | markdownify }}</p>
  28. </div>
  29. </div>
  30. </div>
  31. {{ end }}
  32. </div>
  33. </div>
  34. </section>
  35. {{"<!-- /about -->" | safeHTML}}
  36. {{ end }}
  37. {{ end }}