index.html 606 B

1234567891011121314151617181920
  1. {{ partial "header.html" . }}
  2. {{ partial "navbar.html" . }}
  3. <!-- Flag for jQuery -->
  4. <span id="homepage" style="display: none"></span>
  5. <!-- Widgets -->
  6. {{ range $index, $page := where .Data.Pages "Type" "home" }}
  7. {{ $params := dict "root" $ "page" $page }}
  8. {{ $widget := printf "widgets/%s.html" ( or $page.Params.widget "custom" ) }}
  9. <section id="{{ $page.File.TranslationBaseName }}" class="home-section">
  10. <div class="container">
  11. {{ partial $widget $params }}
  12. </div>
  13. </section>
  14. {{ end }}
  15. <!-- Page Footer -->
  16. {{ partial "footer_container.html" . }}
  17. {{ partial "footer.html" . }}