Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021222324 |
- {{ $data := index .Site.Data .Site.Language.Lang }}
-
- {{ if $data.banner.banner.enable }}
- {{ with $data.banner.banner }}
- {{"<!-- Welcome Slider-->" | safeHTML}}
- <section class="hero-area" style='background-image: url("{{ .bg_Image | absURL }}");'>
- <div class="block">
- {{ if .icon }}
- <div class="video-button">
- <i class="{{ .icon }}"></i>
- </div>
- {{ end }}
- <h1>{{ .title | markdownify }}</h1>
- <p>{{ .content | markdownify }}</p>
- {{ if .button.enable }}
- {{ with .button }}
- <a href="{{ .link }}" class="btn btn-transparent page-scroll">{{ .label }}</a>
- {{ end }}
- {{ end }}
- </div>
- </section>
- {{"<!-- /Welcome Slider-->" | safeHTML}}
- {{end}}
- {{end}}
|