12345678910111213141516171819202122232425262728293031 |
- {{ partial "header.html" . }}
- {{ partial "navbar.html" . }}
- <!-- Flag for jQuery -->
- <span id="homepage" style="display: none"></span>
- {{ if .IsHome }}
- {{ .Scratch.Set "section" "home" }}
- {{ else }}
- {{ .Scratch.Set "section" .Section }}
- {{ end }}
- {{ $section := .Scratch.Get "section" }}
- <!-- Widgets -->
- {{ range $index, $page := where (where .Data.Pages "Section" $section) ".Params.active" "!=" false }}
- {{ $params := dict "root" $ "page" $page }}
- {{ $widget := printf "widgets/%s.html" ( or $page.Params.widget "custom" ) }}
- {{ if in (slice "hero" "hero_carousel") $page.Params.widget }}
- {{ partial $widget $params }}
- {{ else }}
- <section id="{{ $page.File.TranslationBaseName }}" class="home-section{{ with $page.Params.css_class }} {{ . }}{{ end }}">
- <div class="container">
- {{ partial $widget $params }}
- </div>
- </section>
- {{ end }}
- {{ end }}
- <!-- Page Footer -->
- {{ partial "footer_container.html" . }}
- {{ partial "footer.html" . }}
|