home-landing.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="divider">
  2. <div class="lmr">
  3. <div class="home__landing">
  4. <div class="home__landing--img">
  5. <img src="{{ $.Param "landingImage" | relURL }}" alt="Site Landing Page image">
  6. </div>
  7. <div class="home__landing--txt">
  8. {{ if $.Param "landingTitle" }}
  9. {{ range $.Param "landingTitle" }}
  10. <div class="title" style="{{ with $.Param "titleColor" }}color:{{ . }}{{ end }};">
  11. {{ . }}
  12. </div>
  13. {{ end }}
  14. {{ end }}
  15. {{ if $.Param "spaceBetweenTitleText" }}
  16. <div style="height: {{ $.Param "spaceBetweenTitleText" }}px"></div>
  17. {{ end }}
  18. {{ if $.Param "landingText" }}
  19. {{ range $.Param "landingText" }}
  20. <div class="text" style="{{ with $.Param "textColor" }}color:{{ . }}{{ end }};">
  21. {{ . }}
  22. </div>
  23. {{ end }}
  24. {{ end }}
  25. {{ range .Params.buttons }}
  26. <a href="{{ .link }}" target="{{ if in .link "http" }}_blank{{ else }}_self{{ end }}" rel="noreferrer" class="home__landing--link">
  27. <button class="button" aria-label="{{ .text }}" data-color="{{ with .color }}{{ . }}{{ end }}">
  28. {{ .text }}
  29. </button>
  30. </a>
  31. {{ end }}
  32. </div>
  33. </div>
  34. </div>
  35. </div>