2018-05-05 16:00:51 +00:00
|
|
|
<!DOCTYPE html>
|
2019-04-17 00:36:01 +00:00
|
|
|
<html id="{{ .Params.cid }}" lang="{{ .Language }}" class="{{ .Params.class }}">
|
2018-05-05 16:00:51 +00:00
|
|
|
<head>
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
</head>
|
2019-02-28 04:07:42 +00:00
|
|
|
<body class="page">
|
2018-09-14 21:47:24 +00:00
|
|
|
{{ partial "header.html" . }}
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ block "hero" . }}
|
|
|
|
<!-- HERO -->
|
|
|
|
<section id="hero" class="light-text">
|
2019-10-27 11:43:24 +00:00
|
|
|
<div class="main-section">
|
2018-05-05 16:00:51 +00:00
|
|
|
<div id="headlineWrapper">
|
|
|
|
<h1>{{ block "hero-title" . }}{{ .Params.bigheader | default .Title }}{{ end }}</h1>
|
|
|
|
<h5>{{ .Params.abstract }}</h5>
|
|
|
|
</div>
|
|
|
|
{{ block "hero-more" . }}{{ end }}
|
2019-10-27 11:43:24 +00:00
|
|
|
</div>
|
2018-05-05 16:00:51 +00:00
|
|
|
</section>
|
|
|
|
{{ block "post-hero" . }}{{ end }}
|
|
|
|
{{ end }}
|
2019-10-27 11:43:24 +00:00
|
|
|
|
|
|
|
<main>
|
|
|
|
<article class="page-content">
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
</article>
|
|
|
|
</main>
|
2019-02-28 04:07:42 +00:00
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ partialCached "footer.html" . }}
|
|
|
|
{{ partialCached "footer-scripts.html" . }}
|
|
|
|
</body>
|
2019-02-28 04:07:42 +00:00
|
|
|
</html>
|