diff options
| author | Arne Rief <riearn@proton.me> | 2025-08-16 22:42:03 +0200 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2025-08-16 22:42:03 +0200 |
| commit | f0506acd6f70da636b8fdb23439c85bbf2392b40 (patch) | |
| tree | d9c4082aafa3e20a37174beecadcab54286f9cd9 /hugo.toml | |
| parent | 1bf4d8aca6f81f2dddd0262e74b278cd9985b53d (diff) | |
HTML templates done
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 49 |
1 files changed, 29 insertions, 20 deletions
@@ -2,29 +2,38 @@ baseURL = "https://example.org/" languageCode = "en-US" title = "Your Website Name" +[frontmatter] + # {{ .Date }} will look for publishDate or aliases first, fallback to date + date = ["publishdate", "pubdate", "published", "date"] + [menus] - [[menus.main]] - name = "Home" - pageRef = "/" - weight = 10 + [[menus.main]] + identifier = "home" + name = "Home" + pageRef = "/" + weight = 10 - [[menus.main]] - name = "Posts" - pageRef = "/posts" - weight = 20 + [[menus.main]] + identifier = "posts" + name = "Posts" + pageRef = "/posts" + weight = 20 - [[menus.main]] - name = "About" - pageRef = "/about" - weight = 30 + [[menus.main]] + identifier = "about" + name = "About" + pageRef = "/about" + weight = 30 - [[menus.main]] - name = "Tags" - pageRef = "/tags" - weight = 40 + [[menus.main]] + identifier = "tags" + name = "Tags" + pageRef = "/tags" + weight = 40 [params] - [params.author] - name = "Your Name" - email = "your@email.com" - + [params.author] + name = "Your Name" + email = "your@email.com" + # Set logo to empty string in your hugo.toml if you want to display site.Title instead + logo = "logo.svg" |
