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.

banner.html 909B

123456789101112131415161718192021222324252627
  1. {{ $data := index site.Data site.Language.Lang }}
  2. {{ if $data.banner.banner.enable }}
  3. {{ with $data.banner.banner }}
  4. {{"<!-- Welcome Slider-->" | safeHTML}}
  5. <section class="hero-area" style='background-image: url("{{ .bg_image_webp | absURL }}")'>
  6. <!-- this image is for trigger this section fallback background image -->
  7. <img class="d-none" src="{{ .bg_image_webp | absURL }}" onerror="this.onerror=null;this.parentElement.style.backgroundImage= 'url({{ .bg_image | absURL }})'"/>
  8. <div class="block">
  9. {{ if .icon }}
  10. <div class="video-button">
  11. <i class="{{ .icon }}"></i>
  12. </div>
  13. {{ end }}
  14. <h1>{{ .title | markdownify }}</h1>
  15. <p>{{ .content | markdownify }}</p>
  16. {{ if .button.enable }}
  17. {{ with .button }}
  18. <a href="{{ .link }}" class="btn btn-transparent page-scroll">{{ .label }}</a>
  19. {{ end }}
  20. {{ end }}
  21. </div>
  22. </section>
  23. {{"<!-- /Welcome Slider-->" | safeHTML}}
  24. {{end}}
  25. {{end}}