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.

cta.html 948B

12345678910111213141516171819202122232425
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.cta.cta.enable}}
  3. {{ with $data.cta.cta}}
  4. {{"<!-- Start Call To Action -->" | safeHTML}}
  5. <section id="cta" class="call-to-action section-sm bg-1 overly" style='background-image: url("{{ .bg_image_webp | absURL }}")'>
  6. <!-- this image is for trigger this section fallback background image -->
  7. <img src="{{ .bg_image_webp | absURL }}" style="display: none;" onerror="this.onerror=null;this.parentElement.style.backgroundImage= 'url({{ .bg_image | absURL }})'">
  8. <div class="container">
  9. <div class="row">
  10. <div class="col-lg-12 text-center">
  11. <h2>{{ .title | markdownify }}</h2>
  12. <p>{{ .content | markdownify }}</p>
  13. {{ if .button.enable }}
  14. {{ with .button }}
  15. <a href="{{ .link }}" class="btn btn-main page-scroll">{{ .label }}</a>
  16. {{ end }}
  17. {{ end }}
  18. </div>
  19. </div>
  20. </div>
  21. </section>
  22. {{"<!-- Start Services Section -->" | safeHTML}}
  23. {{ end }}
  24. {{ end }}