This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
theme/layouts/index.html
kolaente 004ebf016a
Some checks failed
continuous-integration/drone/push Build is failing
feat: make menu working properly again
2022-01-26 22:33:01 +01:00

34 lines
932 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">
</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" . }}