-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.toml
121 lines (102 loc) · 3.31 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
################################# Default configuration ###################
# provide your domain here
baseURL = "https://nunchuk.io"
# theme
theme = "dot-hugo"
# site title
title = "Nunchuk Resources"
# disable language
#disableLanguages = ["fr"]
# google analytics
googleAnalytics = "G-KH7ZJH6RYF" # paste your analytics ID here. (Ex: UA-123-45)
# unsafe html
[markup.goldmark.renderer]
unsafe = true
############################# Default Parameters ##########################
[params]
# logo is for all page
logo = "images/resource-logo-blue.svg"
# logo white is for homepage logo, you can use colorful logo too...
logo_white = "images/resource-logo-yellow.svg"
# when logo is empty, it will shown your site title
# OpenGraph / Twitter Card metadata
description = "Nunchuk Help & Resources"
author = "hugo"
image = "images/twitter-card.jpg" # this image will be used as fallback if a page has no image of its own
# customize color
primary_color = "#031f2b"
body_color = "#f9f9f9"
text_color = "#031f2b"
text_color_dark = "#242738"
white_color = "#ffffff"
light_color = "#f8f9fa"
# font family
font_family = "lato" # Choose font family from : https://fonts.google.com/
# contact form action
contact_form_action = "https://contact-form.nunchuk.io/contact"
contact_form_success = "Thank you for contacting us.\nWe will get back in touch soon!"
contact_form_fail = "Unfortunately an error occurred. Please try again later"
############################## social links ##############################
#[[params.social]]
#icon = "ti-facebook" # themify icon pack : https://themify.me/themify-icons
#name = "Facebook"
#link = "#"
[[params.social]]
icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
name = "Twitter"
link = "https://twitter.com/nunchuk_io"
[[params.social]]
icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
name = "Github"
link = "https://github.com/nunchuk-io"
[[params.social]]
icon = "ti-headphone-alt" # themify icon pack : https://themify.me/themify-icons
name = "Slack"
link = "https://join.slack.com/t/nunchukio/shared_invite/zt-xqdlvl5g-xKKohQu_R7IUo7_np8rVaw"
#[[params.social]]
#icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
#name = "Linkedin"
#link = "#"
################################ English Language ######################
[Languages.en]
languageName = "En"
languageCode = "en-us"
weight = 1
copyright = "©2022 Nunchuk. All rights reserved."
# banner
[Languages.en.params.banner]
title = "How can we help?"
subtitle = "Find answers from our team quickly or get in touch"
bg_image = ""
placeholder = "Enter your search keywords here"
# call to action
[Languages.en.params.cta]
enable = true
title = "Didn't find an answer to your question?"
content = ""
# call to action button
[Languages.en.params.cta.button]
enable = true
label = "contact us"
link = "contact/"
################## english navigation #################
[[Languages.en.menu.main]]
name = "Home"
url = "https://nunchuk.io"
weight = 1
[Languages.en.menu.main.params]
hrefTargetBlank = true
[[Languages.en.menu.main]]
name = "FAQ"
url = "faq/"
weight = 2
[[Languages.en.menu.main]]
name = "Contact"
url = "contact/"
weight = 3
[[Languages.en.menu.main]]
name = "GitHub"
url = "https://github.com/nunchuk-io/resources"
weight = 4
[Languages.en.menu.main.params]
hrefTargetBlank = true