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" }}
<main>
<div class="text-center container my-5">
<div class="container mt-2">
{{.Content}}
</div>
</main>
{{ end }}

View File

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