Files
website-hugo/themes/lhs/layouts/_default/baseof.html

67 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ partial "head.html" . }}
</head>
<body id="top" class="">
<section id="header" class="">
{{ partial "header.html" . }}
</section>
{{ block "hero" . }}
<section id="hero">
<div class="hero has-primary-gradient">
<div class="hero-body">
<div class="container">
<div class="columns is-centered ">
<div class="column is-four-fifths">
<div class="columns is-vcentered has-text-centered-mobile">
<div class="column is-half">
{{ block "hero-content" . }}
<h1 class="title is-1 has-text-white">{{ .Title }}</h1>
<p class="subtitle has-text-white">{{ .Params.subtitle }}</p>
{{ end }}
</div>
<div class="column">
{{ block "hero-image" . }}
{{ if .Params.hero_image }}
<img class="hero-img" src="{{ .Params.hero_image }}">
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}
<section class="section">
<div class="container content">
{{ block "content" . }}
{{ end }}
</div>
</section>
<div class="is-clearfix"></div>
{{ block "cta" . }}
{{ if .Params.show_big_cta }}
{{ partial "design/bigcta.html" . }}
{{ else }}
{{ partial "design/cta.html" . }}
{{ end }}
{{ end }}
{{ partial "footer.html" .}}
{{ partial "foot.html" .}}
</body>
</html>