home-sections.html 454 B

123456789101112131415
  1. {{ range .Params.sections }}
  2. <section style="background-color: {{ .bgcolor }};">
  3. <div class="divider">
  4. <div class="lmr">
  5. {{ if eq .type "card" }}
  6. {{ partial "main/landing/section-card.html" . }}
  7. {{ else if eq .type "normal" }}
  8. {{ partial "main/landing/section-normal" . }}
  9. {{ else }}
  10. {{ printf "%#v" "Not supported type" }}
  11. {{ end }}
  12. </div>
  13. </div>
  14. </section>
  15. {{ end }}