34 lines
969 B
HTML
34 lines
969 B
HTML
{{ partial "header.html" . }}
|
|
|
|
<section class="homepage-hero hero is-dark is-medium">
|
|
<!-- Hero head: will stick at the top -->
|
|
<div class="hero-head">
|
|
{{ partial "navbar-blank.html" . }}
|
|
</div>
|
|
|
|
<!-- Hero content: will be in the middle -->
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
|
|
{{ if .Params.heading }}
|
|
{{ if .Params.heading.heading }}
|
|
<h1 class="title is-1">{{.Params.heading.heading | markdownify}}</h1>
|
|
{{end}}
|
|
{{ if .Params.heading.content }}
|
|
<h3 class="subtitle is-3">{{.Params.heading.content | markdownify}}</h3>
|
|
{{end}}
|
|
{{ if .Params.heading.subtitle }}
|
|
<h4 class="subtitle is-4">{{.Params.heading.subtitle | markdownify}}</h4>
|
|
{{end}}
|
|
{{ if .Params.heading.subsubtitle }}
|
|
<h4 class="subtitle text-normal">{{.Params.heading.subsubtitle | markdownify}}</h4>
|
|
{{end}}
|
|
{{end}}
|
|
|
|
{{ .Content | markdownify}}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|