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"
|
languageCode = "en-us"
|
||||||
title = "MillironX"
|
title = "MillironX"
|
||||||
paginate = 5
|
paginate = 5
|
||||||
theme = "ananke"
|
|
||||||
|
|
||||||
[build]
|
[build]
|
||||||
writeStats = true
|
writeStats = true
|
||||||
|
|
||||||
[Params]
|
[Params]
|
||||||
cardImage = "saddles"
|
cardImage = "saddles"
|
||||||
motto = ""
|
motto = ""
|
||||||
|
|
||||||
[module]
|
[module]
|
||||||
[[module.mounts]]
|
|
||||||
source = "assets/graphics"
|
|
||||||
target = "assets/graphics"
|
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "assets/images"
|
source = "assets/graphics"
|
||||||
target = "assets/images"
|
target = "assets/graphics"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "assets/scripts"
|
source = "assets/images"
|
||||||
target = "assets/scripts"
|
target = "assets/images"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "assets/styles"
|
source = "assets/scripts"
|
||||||
target = "assets/styles"
|
target = "assets/scripts"
|
||||||
|
|
||||||
[[modules.mounts]]
|
[[module.mounts]]
|
||||||
source = "assets/scripts/custom"
|
source = "assets/styles"
|
||||||
target = "assets/scripts/custom"
|
target = "assets/styles"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[modules.mounts]]
|
||||||
source = "./node_modules/@fortawesome/fontawesome-pro/js"
|
source = "assets/scripts/custom"
|
||||||
target = "assets/scripts/fontawesome"
|
target = "assets/scripts/custom"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/@popperjs/core/dist/umd"
|
source = "./node_modules/@fortawesome/fontawesome-pro/js"
|
||||||
target = "assets/scripts/popper"
|
target = "assets/scripts/fontawesome"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/bootstrap/scss"
|
source = "./node_modules/@popperjs/core/dist/umd"
|
||||||
target = "assets/styles/bootstrap"
|
target = "assets/scripts/popper"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/bootstrap/dist/js"
|
source = "./node_modules/bootstrap/scss"
|
||||||
target = "assets/scripts/bootstrap"
|
target = "assets/styles/bootstrap"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/fittext.js"
|
source = "./node_modules/bootstrap/dist/js"
|
||||||
target = "assets/scripts/fittext"
|
target = "assets/scripts/bootstrap"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/jquery/dist"
|
source = "./node_modules/fittext.js"
|
||||||
target = "assets/scripts/jquery"
|
target = "assets/scripts/fittext"
|
||||||
|
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "./node_modules/jquery-mask-plugin/dist"
|
source = "./node_modules/jquery/dist"
|
||||||
target = "assets/scripts/jquery-mask-plugin"
|
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