-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
182 lines (150 loc) · 4.94 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
######################## default configuration ####################
baseURL = "/"
title = "SkyLounge Documentation"
theme = "godocs-1"
# google analytics
# googleAnalytics = "G-D8KHP5SH10" # example : UA-123-45
# disable language
disableLanguages = [] # disable language from here
# hugo outputs
[outputs]
home = [ "HTML", "JSON"]
# render unsafe html
[markup.goldmark.renderer]
unsafe = true
############################# Plugins ##############################
# CSS Plugin
[[params.plugins.css]]
link = "plugins/bootstrap/bootstrap.min.css"
[[params.plugins.css]]
link = "plugins/search/auto-complete.css"
[[params.plugins.css]]
link = "plugins/featherlight/featherlight.min.css"
# JS Plugin
[[params.plugins.js]]
link = "plugins/jQuery/jquery.min.js"
[[params.plugins.js]]
link = "plugins/bootstrap/bootstrap.min.js"
[[params.plugins.js]]
link = "https://kit.fontawesome.com/a09a8da395.js"
attributes = "crossorigin='anonymous' defer='defer' data-search-pseudo-elements"
[[params.plugins.js]]
link = "plugins/masonry/masonry.min.js"
[[params.plugins.js]]
link = "plugins/featherlight/featherlight.min.js"
[[params.plugins.js]]
link = "plugins/clipboard/clipboard.min.js"
[[params.plugins.js]]
link = "plugins/search/auto-complete.js"
[[params.plugins.js]]
link = "plugins/search/search.js"
[[params.plugins.js]]
link = "plugins/search/lunr.min.js"
[[params.plugins.js]]
link = "plugins/search/fuse.min.js"
[[params.plugins.js]]
link = "plugins/search/mark.js"
[[params.plugins.js]]
link = "plugins/search/search-page.js"
# site variables
[params.variables]
# Color Variables
primary_color = "#4293DD"
text_color = "#333"
text_color_dark = "#222"
text_color_light = "#999"
body_color = "#fff"
border_color = "#E2E2E2"
black = "#000"
white = "#fff"
light = "#FBFBFB"
# Font Variables
primary_font = "Inter:wght@300;400;500;600;700;800"
primary_font_type = "sans-serif" # [serif/sans-serif]
secondary_font = "Roboto"
secondary_font_type = "" # [serif/sans-serif]
icon_font = "Font Awesome 5 Free"
#################### default parameters ################################
[params]
# meta description
author = "Resilient Scale"
description = ""
# contact form action
contact_form_action = "//formspree.io/[email protected]"
# feedback form action
feedback_form_action = "//formspree.io/[email protected]"
# logo
logo = "images/skylounge-logo-oval.png"
favicon = "images/favicon.png"
main_site_link = "https://skylounge.io"
logo_icon = "images/logo-icon.png"
site_logo = "images/skylounge-logo-oval.png"
docs_logo = "images/docs-logo.png"
# Preloader
[params.preloader]
enable = false
preloader = "" # use jpg, png, svg or gif format.
# Navigation button
# [[params.nav_button]]
# style = "outline" # available style: solid, outline
# label = "changelog"
# link = "changelog"
[[params.nav_button]]
style = "solid" # available style: solid, outline
label = "contact"
link = "contact"
############################# social site ########################
[[params.social]]
title = "github"
icon = "fab fa-github" # fontawesome icon : https://fontawesome.com/icons
link = "https://github.com/sky-lounge"
# [[params.social]]
# title = "linkedin"
# icon = "fab fa-linkedin" # fontawesome icon : https://fontawesome.com/icons
# link = "#"
################################### English language #####################################
[Languages.en]
languageName = "En"
languageCode = "en-us"
weight = 1
# copyright
copyright = "Copyright © 2022-2023 [Resilient Scale, Inc](https://rscale.io). All Rights Reserved."
# banner
[Languages.en.banner]
title = "SkyLounge Documentation"
subtitle = "<b>Better Automation for Software Organizations</b><br />CI/CD, security scans, compliance reporting and more. Automate it all centrally, then share it across the organization. And rest assured, SkyLounge will keep it all up to date."
image = "images/graphic.png"
# feedback
[Languages.en.feedback]
title = "Did you find this information useful?"
content = "Your feedback helps us improve our docs."
positive_placeholder = "What did you like about this doc?"
negative_placeholder = "What can we improve in this doc?"
# call to action
[Languages.en.call_to_action]
enable = true
title = "Still Didn't Find What You Need?"
image = "images/chat-bubbles.png"
content = "We welcome your questions or feedback. Please contact us to start the conversation."
# call to action button
[Languages.en.call_to_action.button]
enable = "true"
label = "Contact us"
link = "contact"
############## English navigation ###############
# [[Languages.en.menu.footer]]
# name = "Changelog"
# url = "changelog"
# weight = 1
# [[Languages.en.menu.footer]]
# name = "Contact"
# url = "contact"
# weight = 1
# [[Languages.en.menu.footer]]
# name = "Privacy"
# url = "privacy"
# weight = 2
# [[Languages.en.menu.footer]]
# name = "Terms"
# url = "terms"
# weight = 1