fix(website): don't center text content for main pages

pull/177/head
TorchedSammy 2022-06-22 15:49:30 -04:00
parent 09f5a3102e
commit 2032795815
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
3 changed files with 8 additions and 5 deletions

View File

@ -1,8 +1,7 @@
{{ define "main" }} {{ define "main" }}
<main> <main>
<div class="text-center container my-5"> <div class="container mt-2">
{{.Content}} {{.Content}}
</div> </div>
</main> </main>
{{ end }} {{ end }}

View File

@ -1,4 +1,8 @@
{{ define "main" }} {{ define "main" }}
<main>
<div class="container mt-2">
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
{{.Content}} {{.Content}}
</div>
</main>
{{ end }} {{ end }}