aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-10 01:31:26 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-10 01:31:26 +0100
commit3c7a957b84ad0adf4648a960b0df7df17de3116a (patch)
tree4e4e5c5ab710fd02268726eeae7861fedb63760f /templates
parent81f8ee205bda97cc35e2a02a7f3834dc365fa1f9 (diff)
fix(style): footer doing weird things
Diffstat (limited to 'templates')
-rw-r--r--templates/base/base.gohtml8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/base/base.gohtml b/templates/base/base.gohtml
index 8546d67..634459c 100644
--- a/templates/base/base.gohtml
+++ b/templates/base/base.gohtml
@@ -10,12 +10,14 @@
{{template "opengraph-base" .SEO}}
</head>
<body style="{{ .Data.GetBackgroundImage }}{{ .Data.GetTextColor }}">
- {{template "body" .Data}}
- <div class="credits">
+ <div class="center">
+ {{template "body" .Data}}
+ </div>
+ <footer class="credits">
<p>Crafted by <a href="https://www.anhgelus.world/" target="_blank">Anhgelus Morhtuuzh</a></p>
<p><a href="{{ .Data.Legal.LegalInformationLink }}">Legal information</a></p>
<p><a href="/credits">Credits</a></p>
- </div>
+ </footer>
<script type="module" src="{{getAssetPath "index.js"}}" defer></script>
</body>
</html>