Add default page layout (no longer need anake)

This commit is contained in:
Thomas A. Christensen II 2022-06-28 23:02:13 -05:00
parent 0e50095eb3
commit bfe6a2b8ca
Signed by: millironx
GPG key ID: 139C07724802BC5D
2 changed files with 48 additions and 40 deletions

View file

@ -2,7 +2,6 @@ baseURL = "https://millironx.com"
languageCode = "en-us"
title = "MillironX"
paginate = 5
theme = "ananke"
[build]
writeStats = true
@ -12,6 +11,7 @@ theme = "ananke"
motto = ""
[module]
[[module.mounts]]
source = "assets/graphics"
target = "assets/graphics"

View file

@ -0,0 +1,8 @@
{{ define "main" }}
<section class="container-fluid list-main">
<div class="container px-5">
{{ .Content }}
</div>
</section>
{{ end }}