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.

pricing.html 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.pricing.pricing.enable }}
  3. {{ with $data.pricing.pricing }}
  4. {{"<!-- Start Pricing section -->" | safeHTML}}
  5. <section id="pricing" class="pricing section">
  6. <div class="container">
  7. <div class="row justify-content-center">
  8. {{"<!-- section title -->" | safeHTML}}
  9. <div class="col-lg-12">
  10. <div class="title text-center wow fadeInDown" 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 .pricing_table }}
  18. {{"<!-- single pricing table -->" | safeHTML}}
  19. <div class="col-lg-3 col-md-6 col-12 text-center wow fadeInUp" data-wow-duration="200ms">
  20. <div class="price-item">
  21. {{"<!-- plan name & value -->" | safeHTML}}
  22. <div class="price-title">
  23. <h3>{{ .name }}</h3>
  24. <p><strong class="value">{{ .price }}</strong>/ {{ .unit }}</p>
  25. </div>
  26. {{"<!-- plan description -->" | safeHTML}}
  27. <ul>
  28. {{ range .services }}
  29. <li>{{ . }}</li>
  30. {{ end }}
  31. </ul>
  32. {{"<!-- signup button -->" | safeHTML}}
  33. {{ with .button }}
  34. <a class="btn btn-transparent" href="{{ .link | safeURL }}">{{ .label }}</a>
  35. {{ end }}
  36. </div>
  37. </div>
  38. {{"<!-- end single pricing table -->" | safeHTML}}
  39. {{ end }}
  40. </div>
  41. </div>
  42. </section>
  43. {{"<!-- /pricing -->" | safeHTML}}
  44. {{ end }}
  45. {{ end }}