Files
website/layouts/_default/baseof.html
T
Luc Perkins 0650b70742 Fix sticky footer issue (#10681)
* Fix sticky footer issue

* Fix merge conflict

* Aesthetic changes to 404 page
2019-02-27 20:07:42 -08:00

30 lines
750 B
HTML

<!DOCTYPE html>
<html id="{{ .Params.cid }}" lang="en" class="{{ .Params.class }}">
<head>
{{ partial "head.html" . }}
</head>
<body class="page">
{{ partial "header.html" . }}
{{ block "hero" . }}
<!-- HERO -->
<section id="hero" class="light-text">
<main>
<div id="headlineWrapper">
<h1>{{ block "hero-title" . }}{{ .Params.bigheader | default .Title }}{{ end }}</h1>
<h5>{{ .Params.abstract }}</h5>
</div>
{{ block "hero-more" . }}{{ end }}
</main>
</section>
{{ block "post-hero" . }}{{ end }}
{{ end }}
<article class="page-content">
{{ block "main" . }}{{ end }}
</article>
{{ partialCached "footer.html" . }}
{{ partialCached "footer-scripts.html" . }}
</body>
</html>