blob: 812024973f8aa1677955f62a44bc39000082fbe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
baseURL = "https://example.org/"
languageCode = "en-US"
title = "Your Website Name"
enableRobotsTXT = true # Copy this line to your project's hugo.toml
[frontmatter]
# {{ .Date }} will look for publishDate or aliases first, fallback to date
date = ["publishdate", "pubdate", "published", "date"]
[menus]
[[menus.main]]
identifier = "home"
name = "Home"
pageRef = "/"
weight = 10
[[menus.main]]
identifier = "posts"
name = "Posts"
pageRef = "/posts"
weight = 20
[[menus.main]]
identifier = "about"
name = "About"
pageRef = "/about"
weight = 30
[[menus.main]]
identifier = "tags"
name = "Tags"
pageRef = "/tags"
weight = 40
[params]
# Set logo to empty string in your project's hugo.toml if you want to display site.Title instead
logo = "/logo.svg"
[params.author]
name = "Your Name"
email = "your@email.com"
|