Welcome to mirror list, hosted at ThFree Co, Russian Federation.

home-sections.html « landing « main « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fd7da96e6e840c261753aa8f81db3bd13fb08a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ range .Params.sections }}
  <section style="background-color: {{ .bgcolor }};">
    <div class="divider">
      <div class="lmr">
        {{ if eq .type "card" }}
          {{ partial "main/landing/section-card.html" . }}
        {{ else if eq .type "normal" }}
          {{ partial "main/landing/section-normal" . }}
        {{ else }}
          {{ printf "%#v" "Not supported type" }}
        {{ end }}
      </div>
    </div>
  </section>
{{ end }}