Add default page layout (no longer need anake)
This commit is contained in:
parent
0e50095eb3
commit
bfe6a2b8ca
2 changed files with 48 additions and 40 deletions
80
config.toml
80
config.toml
|
@ -2,60 +2,60 @@ baseURL = "https://millironx.com"
|
|||
languageCode = "en-us"
|
||||
title = "MillironX"
|
||||
paginate = 5
|
||||
theme = "ananke"
|
||||
|
||||
[build]
|
||||
writeStats = true
|
||||
writeStats = true
|
||||
|
||||
[Params]
|
||||
cardImage = "saddles"
|
||||
motto = ""
|
||||
cardImage = "saddles"
|
||||
motto = ""
|
||||
|
||||
[module]
|
||||
[[module.mounts]]
|
||||
source = "assets/graphics"
|
||||
target = "assets/graphics"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/images"
|
||||
target = "assets/images"
|
||||
[[module.mounts]]
|
||||
source = "assets/graphics"
|
||||
target = "assets/graphics"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/scripts"
|
||||
target = "assets/scripts"
|
||||
[[module.mounts]]
|
||||
source = "assets/images"
|
||||
target = "assets/images"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "assets/styles"
|
||||
target = "assets/styles"
|
||||
[[module.mounts]]
|
||||
source = "assets/scripts"
|
||||
target = "assets/scripts"
|
||||
|
||||
[[modules.mounts]]
|
||||
source = "assets/scripts/custom"
|
||||
target = "assets/scripts/custom"
|
||||
[[module.mounts]]
|
||||
source = "assets/styles"
|
||||
target = "assets/styles"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@fortawesome/fontawesome-pro/js"
|
||||
target = "assets/scripts/fontawesome"
|
||||
[[modules.mounts]]
|
||||
source = "assets/scripts/custom"
|
||||
target = "assets/scripts/custom"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@popperjs/core/dist/umd"
|
||||
target = "assets/scripts/popper"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@fortawesome/fontawesome-pro/js"
|
||||
target = "assets/scripts/fontawesome"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/scss"
|
||||
target = "assets/styles/bootstrap"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/@popperjs/core/dist/umd"
|
||||
target = "assets/scripts/popper"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/dist/js"
|
||||
target = "assets/scripts/bootstrap"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/scss"
|
||||
target = "assets/styles/bootstrap"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/fittext.js"
|
||||
target = "assets/scripts/fittext"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/bootstrap/dist/js"
|
||||
target = "assets/scripts/bootstrap"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery/dist"
|
||||
target = "assets/scripts/jquery"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/fittext.js"
|
||||
target = "assets/scripts/fittext"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery-mask-plugin/dist"
|
||||
target = "assets/scripts/jquery-mask-plugin"
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery/dist"
|
||||
target = "assets/scripts/jquery"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "./node_modules/jquery-mask-plugin/dist"
|
||||
target = "assets/scripts/jquery-mask-plugin"
|
||||
|
|
8
layouts/_default/single.html
Normal file
8
layouts/_default/single.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{ define "main" }}
|
||||
|
||||
<section class="container-fluid list-main">
|
||||
<div class="container px-5">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
Loading…
Reference in a new issue