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'
|
||||
title = 'rottenwheel'
|
||||
theme = 'hugo-rottenwheel'
|
||||
disableKinds = [ 'taxonomy' ]
|
||||
disableKinds = ['taxonomy']
|
||||
enableRobotsTXT = true
|
||||
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
url = "/posts/"
|
||||
name = "blog"
|
||||
[[menu.main]]
|
||||
url = "/"
|
||||
name = "blog"
|
||||
|
||||
[[menu.main]]
|
||||
url = "https://rottenwheel.com"
|
||||
name = "about"
|
||||
|
|
Loading…
Reference in a new issue