-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhugo.toml
48 lines (41 loc) · 959 Bytes
/
hugo.toml
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
42
43
44
45
46
47
48
baseURL = 'https://example.org/'
theme = 'japan-biz'
defaultContentLanguage = 'en'
defaultContentLanguageInSubdir = true
[languages]
[languages.en]
contentDir = 'content/en'
disabled = false
languageCode = 'en-US'
languageDirection = 'ltr'
languageName = 'English'
title = 'Business Website'
weight = 1
[languages.en.params]
subtitle = "Let's work to make people smile"
[languages.ja]
contentDir = 'content/ja'
disabled = false
languageCode = 'ja-JP'
languageDirection = 'ltr'
languageName = 'Japanese'
title = 'ビジネスサイト'
weight = 2
[languages.ja.params]
subtitle = 'スマイルのために働きましょう'
[[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.116.0"