-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
153 lines (126 loc) · 3.82 KB
/
Copy pathconfig.toml
File metadata and controls
153 lines (126 loc) · 3.82 KB
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
################################# Default configuration ###################
# provide your domain here
baseURL = "/"
# theme
theme = "dot-hugo"
# site title
title = "Metapsy Documentation"
# disable language
disableLanguages = ["fr"]
# google analytics
# googleAnalytics = "" # paste your analytics ID here. (Ex: UA-123-45)
# unsafe html
[markup.goldmark.renderer]
unsafe = true
# Table of contents for "On this page" (h2–h4)
[markup.tableOfContents]
startLevel = 2
endLevel = 4
# Performance: minify assets, limit RSS size
enableResourceMinify = true
rssLimit = 50
############################# Default Parameters ##########################
[params]
# logo is for all page
logo = ""
# logo white is for homepage logo, you can use colorful logo too...
logo_white = ""
# when logo is empty, it will shown your site title
# OpenGraph / Twitter Card metadata
description = "Metapsy Documentation"
author = "Metapsy Collaboration"
image = "images/logo.png" # this image will be used as fallback if a page has no image of its own
# customize color
primary_color = "#313f45"
body_color = "#f9f9f9"
text_color = "#636363"
text_color_dark = "#242738"
white_color = "#ffffff"
light_color = "#f8f9fa"
# font family: leave unset to use system fonts (no Google Fonts)
# font_family = "Fira Sans"
# contact form action
contact_form_action = "#" # contact form works with : https://formspree.io
############################## 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://www.twitter.com/pcuijpers"
# [[params.social]]
# icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
# name = "Github"
# link = "https://github.com/metapsy-project"
# [[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 = "© <script>document.write(new Date().getFullYear())</script> Metapsy Collaboration"
# banner
[Languages.en.params.banner]
title = "The Metapsy Documentation"
subtitle = "Use this website to search the technical documentation of the project"
bg_image = "images/banner.jpg"
placeholder = "Search for topics..."
# call to action
[Languages.en.params.cta]
enable = false
title = "Didn't find an answer to your question?"
content = "Musce libero nunc, dignissim quis turpis quis, semper vehicula dolor. Suspendisse tincidunt consequat quam."
# call to action button
[Languages.en.params.cta.button]
enable = false
label = "contact us"
link = "contact/"
################## english navigation #################
# Home button removed - no longer needed
# Dropdown menu
[[Languages.en.menu.main]]
weight = 4
name = "Topics"
hasChildren = true
[[Languages.en.menu.main]]
parent = "Topics"
name = "General Information"
url = "general/"
weight = 1
[[Languages.en.menu.main]]
parent = "Topics"
name = "Databases"
url = "databases/"
weight = 2
[[Languages.en.menu.main]]
parent = "Topics"
name = "Data Preparation"
url = "data-preparation/"
weight = 3
[[Languages.en.menu.main]]
parent = "Topics"
name = "Data Release"
url = "release/"
weight = 4
[[Languages.en.menu.main]]
parent = "Topics"
name = "R Packages & API"
url = "r-packages/"
weight = 5
[[Languages.en.menu.main]]
parent = "Topics"
name = "Meta-Analysis Tool"
url = "meta-analysis-tool/"
weight = 6
[[Languages.en.menu.main]]
parent = "Topics"
name = "Risk of Bias"
url = "rob/"
weight = 7
custom_css = ["css/custom.css"]
custom_js = ["js/custom.js"]