-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
214 lines (180 loc) · 5.86 KB
/
config.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
languageCode = "en-us"
title = "DigitalRooster"
baseurl = "https://www.digitalrooster.dev/"
theme = "forty"
[params]
# You can use Markdown syntax for urls [text](//url.to/source)
# To create multi-line text in strings use the """example Text""" format
#
# All icons using Fontawesome's icon font. Look at fontawesome.io/icons
# for more icons. The icons are represented by their corresponding
# CSS class.
# Provide your metadata here.
name = "Thomas Ruschival"
description = "Your hackable alarm clock, podcast player and internet radio"
# Link custom assets relative to /static
custom_css = ["custom.css"]
custom_js = []
favicon = "favicon.ico"
# Just a custom image variable, please define it in .md files for content.
image = ""
# 404 error customization
[params.error404]
heading = "Page couldn't be found"
text = "Please visit [DigitalRooster](http://digitalrooster.dev/)"
# Navigation Section
[params.navigation]
title = "DigitalRooster"
subtitle = "Navigate"
menu = "Menu"
# Optional logo as brand stored in img/
logo = "digital_rooster_low_poly.svg"
[[params.navigation.links]]
name = "Home"
url = "#"
[[params.navigation.links]]
name = "Hardware"
url = "pages/hardware"
[[params.navigation.links]]
name = "Assembly"
url = "pages/assembly"
[[params.navigation.links]]
name = "Contributing"
url = "pages/contributing"
[[params.navigation.links]]
name = "Software"
url = "pages/software"
[[params.navigation.links]]
name = "Safety and Environment"
url = "pages/safety"
[[params.navigation.links]]
name = "About this Website"
url = "pages/about"
[[params.navigation.links]]
name = "Privacy and Data Protection"
url = "pages/privacy"
# Add custom links here by uncommenting code below. To remove links just delete
# the [[params.navigation.links]] map associated with that link. Copy and paste
# code below if you need more links. Buttons work in the same way.
# [[params.navigation.links]]
# name = "NameOfLink"
# url = "UrlOfLink"
# # Button Style 1
# [[params.navigation.button1]]
# name = "Get Started"
# url = "blogs"
# # Button Style 2
# [[params.navigation.button2]]
# name = "Log In"
# url = "#"
# Banner section
[params.banner]
# To change the background image on the homepage banner, replace 'banner.jpg' in
# the 'static/img' folder.
title = "Welcome to DigitalRooster"
subtitle = "Your hackable alarm clock, internet radio, podcast player or whatever else you want it to be!"
buttonText = "Get Started"
# Tiles Section
[params.tiles]
enable = true
# Display your showcases here.
[[params.tiles.showcase]]
title = "Overview"
subtitle = "Why, What and How"
image = "satellite_img.webp"
url = "pages/main"
[[params.tiles.showcase]]
title = "Software"
subtitle = "What's inside"
image = "coding_small.webp"
url = "pages/software"
[[params.tiles.showcase]]
title = "Hardware"
subtitle = "The tangible DigitalRooster"
image = "hardware_pcb.webp"
url = "pages/hardware"
[[params.tiles.showcase]]
title = "Contributing"
subtitle = "How to contribute"
image = "contributing.webp"
url = "pages/contributing"
# Section Type Two
# [params.two]
# enable = true
# title = "News"
# subtitle = """Project updates"""
# buttonText = "read more"
# url = "/news/"
# Section Type news - shortened project news
[params.news]
enable = true
title = "Project Updates"
buttonText = "read all updates"
url = "/news/"
# Contact section
[params.contact]
enable = false
form = false
buttonSend = "Send message"
buttonClear = "Clear"
# Since this template is static, the contact form uses www.formspree.io as a
# proxy. The form makes a POST request to their servers to send the actual
# email. Visitors can send up to a 1000 emails each month for free.
#
# What you need to do for the setup?
#
# - set your email address under 'email' below and uncomment
# - upload the generated site to your server
# - send a dummy email yourself to confirm your account
# - click the confirm link in the email from www.formspree.io
# - you're done. Happy mailing!
# formEmail = "[email protected]"
# Contact Section
# You can add multiple emails, phone numbers, or addresses
# by copying the corresponding map with frontmatter code.
[[params.contact.email]]
title = "Email"
email = "[email protected]"
# [[params.contact.phone]]
# title = "Phone"
# phone = "(000) 000-0000 x1234"
# [[params.contact.address]]
# title = "Address"
# street = "Street"
# city = "City, ST 00000"
# country = "Country"
# Footer section
[params.footer]
enable = true
copyright = "2019 - Thomas Ruschival"
[[params.footer.social]]
icon = "fa-github"
url= "https://www.github.com/truschival/"
label = "GitHub"
[[params.footer.quicklinks]]
#text = "Web Design"
url= "https://github.com/MarcusVirg/forty"
alt = "Theme 'forty' for hugo designed by Marcus Virginia"
[[params.footer.quicklinks]]
#text = "Privacy"
url= "/pages/privacy"
alt = "Privacy and data protection"
# New goldmark render settings for Hugo > 0.6
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xHTML = false