Indent consistently with 2 spaces

This commit is contained in:
ItsDrike 2021-08-26 02:06:40 +02:00
parent cf116ca468
commit 1385f95d7f
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD
11 changed files with 86 additions and 86 deletions

View file

@ -1,21 +1,21 @@
<h1 class="display-4">{{ .Title }}</h1>
{{ if .Params.subtitle }}
<h5 class="my-3">{{ markdownify .Params.subtitle | emojify }}</h5>
<h5 class="my-3">{{ markdownify .Params.subtitle | emojify }}</h5>
{{ end }}
{{ if .IsPage }}
<p>{{ partial "content-details.html" . }}</p>
<p>{{ partial "content-details.html" . }}</p>
{{ end }}
{{ if .Content }}
<hr>
<hr>
<div class="content mt-3">
{{ if .TableOfContents }}
<div class="float-lg-end ml-lg-3 mb-3 p-3">
{{ .TableOfContents }}
</div>
{{ end }}
{{ .Content }}
</div>
<div class="content mt-3">
{{ if .TableOfContents }}
<div class="float-lg-end ml-lg-3 mb-3 p-3">
{{ .TableOfContents }}
</div>
{{ end }}
{{ .Content }}
</div>
{{ end }}