18 lines
260 B
TOML
18 lines
260 B
TOML
baseURL = 'https://example.org/'
|
|
languageCode = 'en-us'
|
|
title = 'My New Hugo Site'
|
|
|
|
[[menus.main]]
|
|
name = 'Home'
|
|
pageRef = '/'
|
|
weight = 10
|
|
|
|
[[menus.main]]
|
|
name = 'Posts'
|
|
pageRef = '/posts'
|
|
weight = 20
|
|
|
|
[[menus.main]]
|
|
name = 'Tags'
|
|
pageRef = '/tags'
|
|
weight = 30 |