Copying layouts from old theme to new

This commit is contained in:
2020-05-31 05:21:00 +01:00
parent 3503ec15d8
commit 9dbf2d80d7
28 changed files with 882 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{{ define "main" }}
{{ .Scratch.Set "IsSingle" true }}
<main class="content-page container pt-7 pb-5">
<div class="row">
<div class="col">
<article>
<div class="row justify-content-center">
<div class="col-lg-8">
<h2 class="mb-3">{{ .Title }}</h2>
<div class="content">
{{ .Content }}
</div>
</div>
</div>
</article>
</div>
</div>
</main>
{{ end }}