home-landing.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {{ with .Params.landing }}
  2. {{ $landing := . }}
  3. <div class="divider">
  4. <div class="lmr">
  5. <div class="home__landing">
  6. {{ if .image }}
  7. <div class="home__landing--img">
  8. <img src="{{ .image | relURL }}" alt="Site Landing Page image">
  9. </div>
  10. <div class="home__landing--txt">
  11. {{ if .title }}
  12. {{ range .title }}
  13. <div class="title" style="{{ with $landing.titleColor }}color:{{ . }}{{ end }};">
  14. {{ . }}
  15. </div>
  16. {{ end }}
  17. {{ end }}
  18. {{ if .spaceBetweenTitleText }}
  19. <div style="height: {{ .spaceBetweenTitleText }}px"></div>
  20. {{ end }}
  21. {{ if .text }}
  22. {{ range .text }}
  23. <div class="text" style="{{ with $landing.textColor }}color:{{ . }}{{ end }};">
  24. {{ . }}
  25. </div>
  26. {{ end }}
  27. {{ end }}
  28. {{ range .buttons }}
  29. <a href="{{ .link }}" target="{{ if in .link "http" }}_blank{{ else }}_self{{ end }}" rel="noreferrer" class="home__landing--link">
  30. <button class="button home__landing--btn" aria-label="{{ .text }}" data-color="{{ with .color }}{{ . }}{{ end }}">
  31. {{ .text }}
  32. </button>
  33. </a>
  34. {{ end }}
  35. </div>
  36. {{ else }}
  37. <div class="home__landing--txt">
  38. {{ if .title }}
  39. {{ range .title }}
  40. <div class="title" style="{{ with $landing.titleColor }}color:{{ . }}{{ end }};">
  41. {{ . }}
  42. </div>
  43. {{ end }}
  44. {{ end }}
  45. {{ if .spaceBetweenTitleText }}
  46. <div style="height: {{ .spaceBetweenTitleText }}px"></div>
  47. {{ end }}
  48. {{ if .text }}
  49. {{ range .text }}
  50. <div class="text" style="{{ with $landing.textColor }}color:{{ . }}{{ end }};">
  51. {{ . }}
  52. </div>
  53. {{ end }}
  54. {{ end }}
  55. </div>
  56. <div class="flexcolumn">
  57. {{ range .buttons }}
  58. <a href="{{ .link }}" target="{{ if in .link "http" }}_blank{{ else }}_self{{ end }}" rel="noreferrer" class="home__landing--link">
  59. <button class="button home__landing--btn2" aria-label="{{ .text }}" data-color="{{ with .color }}{{ . }}{{ end }}">
  60. {{ .text }}
  61. </button>
  62. </a>
  63. {{ end }}
  64. </div>
  65. {{ end }}
  66. </div>
  67. </div>
  68. </div>
  69. {{ end }}