|
|
@ -1,7 +1,7 @@ |
|
|
|
baseURL = "https://example.com" |
|
|
|
title = "HUGO.386" |
|
|
|
languageCode = "en" |
|
|
|
DefaultContentLanguage = "en" |
|
|
|
DefaultContentLanguage = "en" # Change this to change the site's language |
|
|
|
theme = "hugo.386" |
|
|
|
preserveTaxonomyNames = true |
|
|
|
|
|
|
@ -41,17 +41,17 @@ preserveTaxonomyNames = true |
|
|
|
loadonepass = false |
|
|
|
|
|
|
|
[menu] |
|
|
|
|
|
|
|
# This displays buttons in the navbar to access your contents |
|
|
|
[[menu.main]] |
|
|
|
identifier = "about" |
|
|
|
name = "About" |
|
|
|
url = "/about/" |
|
|
|
weight = 10 |
|
|
|
identifier = "about" # An unique identifier for the button |
|
|
|
name = "About" # A display name for the button |
|
|
|
url = "/about/" # The path to the content. It can lead to a single page (like here) |
|
|
|
weight = 10 # A number to order the buttons in the navbar |
|
|
|
|
|
|
|
[[menu.main]] |
|
|
|
identifier = "posts" |
|
|
|
name = "All posts" |
|
|
|
url = "/post/" |
|
|
|
url = "/post/" # The path can lead to a content folder too. |
|
|
|
weight = 20 |
|
|
|
|
|
|
|
[taxonomies] |
|
|
|