summaryrefslogtreecommitdiffstats
path: root/hugo.toml
blob: 59cbe11ba102403b9d82ed2657019f1f6b1615d5 (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
baseURL = 'https://example.org/'
locale = 'en-US'
title = 'My New Hugo Project'

[menus]
  [[menus.main]]
    name = 'Home'
    pageRef = '/'
    weight = 10

  [[menus.main]]
    name = 'Posts'
    pageRef = '/posts'
    weight = 20

  [[menus.main]]
    name = 'Tags'
    pageRef = '/tags'
    weight = 30

[module]
  [module.hugoVersion]
    extended = false
    min = '0.146.0'