uci-hugo-landingpage/layouts/index.html
kebler.net a57525de2f feat: allow default light/dark colors as defaults for entire page
fix: move shortcodes to their own repo
feat: allow offsetting light and dark colors on sections
refactor: removed custom hero, just use a regular section
2021-08-11 13:52:19 -07:00

17 lines
367 B
HTML

<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{ if ne .Site.Params.navbar.hidden true }}
{{ partial "navbar.html" . }}
{{ end }}
{{ if eq .Site.Params.use_hero true }}
{{ partial "hero.html" . }}
{{ end }}
<main class="sections">
{{ partial "sections.html" . }}
{{ partial "modals.html" . }}
</main>
{{ partial "js.html" . }}
</body>
</html>