diff options
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -21,7 +21,16 @@ locale = 'en-US' ordered = false startLevel = 2 -# Menus +# Navigation Menu +# Add menu items below. Items are displayed left-to-right in order of weight. +# Parameters: +# name = Text displayed in menu (visible to users) +# pageRef = Path to your page (e.g., /articles, /is/about) +# weight = Order (lower numbers = leftmost, higher = rightmost) +# +# For external links, use 'url' instead of 'pageRef': +# url = 'https://example.com' + [[menu.main]] name = 'articles' pageRef = '/articles' @@ -37,6 +46,12 @@ locale = 'en-US' pageRef = '/is/here' weight = 30 +# Example: Add a new page to the menu +# [[menu.main]] +# name = 'uses' +# pageRef = '/is/uses' +# weight = 40 + # Content sections [params] description = 'Writing about IT, life, and the things that matter.' |
