fix: use correct order for headings on home page

This commit is contained in:
kolaente 2022-02-02 09:28:26 +01:00
parent e8327804d4
commit c84e5e4fe6
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 6 deletions

View File

@ -10,19 +10,19 @@
</h1>
{{ end }}
{{ if .Params.heading.content }}
<h3 class="mb-6 text-3xl">
<h2 class="mb-6 text-3xl">
{{ .Params.heading.content | markdownify }}
</h3>
</h2>
{{ end }}
{{ if .Params.heading.subtitle }}
<h4 class="text-xl">
<h3 class="text-xl">
{{ .Params.heading.subtitle | markdownify }}
</h4>
</h3>
{{ end }}
{{ if .Params.heading.subsubtitle }}
<h4 class="text-lg">
<h3 class="text-lg">
{{ .Params.heading.subsubtitle | markdownify }}
</h4>
</h3>
{{ end }}
{{ end }}