mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2024-11-09 12:10:03 +00:00
feat(config): update blog URL and add 'about' navigation link
Fix baseURL to 'https://blog.rottenwheel.com'. Modifying main menu by linking 'blog' to home and adding an 'about' link back to 'https://rottenwheel.com'.
This commit is contained in:
parent
7ac23ec03b
commit
d0aa620a3c
1 changed files with 9 additions and 5 deletions
14
hugo.toml
14
hugo.toml
|
@ -1,11 +1,15 @@
|
||||||
baseURL = 'https://www.rottenwheel.com/'
|
baseURL = 'https://blog.rottenwheel.com/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'rottenwheel'
|
title = 'rottenwheel'
|
||||||
theme = 'hugo-rottenwheel'
|
theme = 'hugo-rottenwheel'
|
||||||
disableKinds = [ 'taxonomy' ]
|
disableKinds = ['taxonomy']
|
||||||
enableRobotsTXT = true
|
enableRobotsTXT = true
|
||||||
|
|
||||||
[menu]
|
[menu]
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
url = "/posts/"
|
url = "/"
|
||||||
name = "blog"
|
name = "blog"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
url = "https://rottenwheel.com"
|
||||||
|
name = "about"
|
||||||
|
|
Loading…
Reference in a new issue