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.

hace 6 años
hace 6 años
hace 6 años
1234567891011121314151617181920212223
  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 class="call-to-action section-sm bg-1 overly" style='background-image: url("{{ .bg_Image | relURL }}")'>
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-lg-12 text-center">
  9. <h2>{{ .title | markdownify }}</h2>
  10. <p>{{ .content | markdownify }}</p>
  11. {{ if .button.enable }}
  12. {{ with .button }}
  13. <a href="{{ .link }}" class="btn btn-main page-scroll">{{ .label }}</a>
  14. {{ end }}
  15. {{ end }}
  16. </div>
  17. </div>
  18. </div>
  19. </section>
  20. {{"<!-- Start Services Section -->" | safeHTML}}
  21. {{ end }}
  22. {{ end }}