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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {{ if .Site.Data.pricing.enable}}
  2. {{"<!-- Start Pricing section -->" | safeHTML}}
  3. <section id="pricing" class="pricing section">
  4. <div class="container">
  5. <div class="row">
  6. {{"<!-- section title -->" | safeHTML}}
  7. <div class="col-lg-12">
  8. <div class="title text-center wow fadeInDown" data-wow-duration="500ms">
  9. <h2>{{ with .Site.Data.pricing.heading }} {{ . }} {{ end }}<span class="color"> {{ with .Site.Data.pricing.headingSpan }} {{ . }} {{ end }}</span></h2>
  10. <div class="border-meghna"></div>
  11. </div>
  12. </div>
  13. {{"<!-- /section title -->" | safeHTML}}
  14. {{ range .Site.Data.pricing.pricingTable }}
  15. {{"<!-- single pricing table -->" | safeHTML}}
  16. <div class="col-lg-3 col-md-6 col-12 text-center wow fadeInUp" data-wow-duration="200ms">
  17. <div class="price-item">
  18. {{"<!-- plan name & value -->" | safeHTML}}
  19. <div class="price-title">
  20. <h3>{{ .title }}</h3>
  21. <p><strong class="value">{{ .price }}</strong>/ {{ .time }}</p>
  22. </div>
  23. {{"<!-- plan description -->" | safeHTML}}
  24. <ul>
  25. {{ range .plan }}
  26. <li>{{ .planDetails }}</li>
  27. {{ end }}
  28. </ul>
  29. {{"<!-- signup button -->" | safeHTML}}
  30. <a class="btn btn-transparent" href="{{ .btnURL | absURL}}">{{ .btnText }}</a>
  31. </div>
  32. </div>
  33. {{"<!-- end single pricing table -->" | safeHTML}}
  34. {{ end }}
  35. </div>
  36. </div>
  37. </section>
  38. {{"<!-- /pricing -->" | safeHTML}}
  39. {{ end }}