-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
131 lines (109 loc) · 3.36 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
baseURL = 'https://toastbits.dev'
languageCode = "en-GB"
theme = ["hugo-redirect", "hugo-theme-monochrome"]
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = true
[params]
color_scheme = "dark"
enable_toc = true
enable_collapsible_toc = true
enable_collapsible_changelogs = true
enable_site_search = true
enable_zooming_js = false
[outputs]
home = ["HTML", "JSON"]
page = ["HTML", "JSON"]
[languages]
[languages.en]
languageCode = 'en-GB'
languageDirection = 'ltr'
languageName = 'English'
title = "ToastBits"
#navbar_html = '<a href="https://github.com/toasterofbread"><img src="/github-mark-white.svg" height=15px style="margin: auto; display: block;"></img></a>'
weight = 2
[languages.en.params]
author = "Talo Halton"
footer = "Built with 愛 using <a href='https://github.com/gohugoio/hugo'>Hugo</a>, <a href='https://github.com/kaiiiz/hugo-theme-monochrome'>Monochrome</a>, and <a href='https://github.com/catppuccin/catppuccin'>Catppuccin</a>."
navbar_title = """\
<div style="display: flex; align-items: center;">
~$
<div style="color: var(--color-text-title);">
toaster
</div>
<div style="font-size: 0.7em;">
@toastbits.dev
</div>
</div>
"""
source_code_label = "AAA"
[[languages.en.menu.navbar]]
identifier = "root"
name = "root"
pageRef = "/"
weight = 1
[[languages.en.menu.navbar]]
identifier = "projects"
name = "/projects"
pageRef = "/projects/"
weight = 2
[[languages.en.menu.navbar]]
identifier = "repos"
name = "/repos"
pageRef = "/repos/"
weight = 3
[[languages.en.menu.navbar]]
identifier = "about"
name = "/about"
pageRef = "/about"
weight = 4
[[languages.en.menu.navbar]]
identifier = "github"
name = "/github"
pageRef = "/github"
weight = 5
[languages.ja]
languageCode = 'ja-JP'
languageDirection = 'ltr'
languageName = '日本語'
title = 'ToastBits'
weight = 2
[languages.ja.params]
author = "ホートン太郎"
footer = "<a href='https://github.com/gohugoio/hugo'>Hugo</a> と <a href='https://github.com/kaiiiz/hugo-theme-monochrome'>Monochrome</a> で製作。"
navbar_title = """\
<div style="display: flex; align-items: center;">
~$
<div style="color: var(--color-text-title);">
toaster
</div>
<div style="font-size: 0.7em;">
@toastbits.dev
</div>
</div>
"""
source_code_label = "BBB"
[[languages.ja.menu.navbar]]
identifier = "root"
name = "ルート"
url = "/ja"
weight = 1
[[languages.ja.menu.navbar]]
identifier = "projects"
name = "/プロジェクト"
url = "/ja/projects/"
weight = 2
[[languages.ja.menu.navbar]]
identifier = "repos"
name = "/レポジトリ"
url = "/ja/repos/"
weight = 3
[[languages.ja.menu.navbar]]
identifier = "about"
name = "/アバウト"
url = "/ja/about"
weight = 4
[[languages.ja.menu.navbar]]
identifier = "github"
name = "/github"
url = "/github"
weight = 5