-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_config.yml
More file actions
198 lines (183 loc) · 5.94 KB
/
_config.yml
File metadata and controls
198 lines (183 loc) · 5.94 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
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
# ==============================================================
# CONFIGURATION
# ==============================================================
# Jekyll configuration files are written in YAML format.
# Colons, tabs/spacing, and quotes are meaningful in YAML.
# It is recommended you look at the following guide to avoid
# syntax errors in this file:
# ~> https://learnxinyminutes.com/docs/yaml/
#
#
# Questions ?
# ~> https://minicomp.github.io/wiki/#/
# ~> https://gitter.im/minicomp/wax/
#
# ---------------------------------------------------------------
# MAIN SETTINGS
# ---------------------------------------------------------------
# Feel free to change these! For more info, refer to:
# ~> https://jekyllrb.com/docs/configuration/options/
title: 'Teach Viz by Example'
url: 'https://visualizingthefuture.github.io'
baseurl: '/examples-repository'
copyright: 'Visualizing the Future, 2020'
logo: '/img/logo.png'
github_user: visualizingthefuture
github_repo: examples-repository
# ---------------------------------------------------------------
# BUILD SETTINGS
# ---------------------------------------------------------------
# Best not to mess with these unless you know what you're doing!
permalink: 'pretty'
sass:
style: compressed
exclude:
- Gemfile*
- Rakefile
- vendor
- spec
- README.md
webrick:
headers:
'Access-Control-Allow-Origin': '*'
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
footnote_backlink: "↩︎"
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
#theme: jekyll-theme-cayman
# --------------------------------------------------------------
# COLLECTION SETTINGS
# --------------------------------------------------------------
# Wax leverages Jekyll collections for much of its
# functionality, therefor some of the keys below are from
# Jekyll while others are Wax-specific.
# For more info, refer to:
# ~> https://jekyllrb.com/docs/collections/
collections:
exhibits:
output: true
datavis: # name of collection
output: true # makes sure pages are output as html files
layout: 'indiv_example' # the layout for the pages to use
dictionary: 'data_dictionary'
metadata:
source: 'datavis.json' # path to the metadata file within `_data`
images:
source: 'raw_images/datavis' # path to the directory of images within `_data`
datasets: # name of collection
output: true # makes sure pages are output as html files
layout: 'indiv_example' # the layout for the pages to use
dictionary: 'data_dictionary'
metadata:
source: 'datasets.json' # path to the metadata file within `_data`
images:
source: 'raw_images/datasets' # path to the directory of images within `_data`
# --------------------------------------------------------------
# SEARCH INDEX SETTINGS
# --------------------------------------------------------------
# You can create multiple search indexes below (though only one is
# recommended!) by specifying
# an `index` file to write it to and some `collections` for it to index
# and running `$ bundle exec rake wax:search` .
search:
main:
index: '/search/index.json' # file the index will get written to
collections:
datavis:
content: false # whether or not to index page content
fields: # the metadata fields to index
- pid
- label
- date_of_upload
- creator
- date_of_creation
- source_url
- description
- vis_type
- subject_area
- original_context
- audience_level
- audience_composition
- pedagogical_description
- addl_data_props
- ethical_quandries
- data_processing
- data_type
- geospatial_std
- language_tool
- linked_code
- linked_example
- linked_instr_mtl
datasets:
content: false # whether or not to index page content
fields: # the metadata fields to index
- pid
- label
- date_of_upload
- creator
- date_of_creation
- source_url
- description
- vis_type
- subject_area
- original_context
- audience_level
- audience_composition
- pedagogical_description
- addl_data_props
- ethical_quandries
- data_processing
- data_type
- geospatial_std
- language_tool
- linked_code
- linked_example
- linked_instr_mtl
# --------------------------------------------------------------
# SITE MENU SETTINGS
# --------------------------------------------------------------
# Each menu item needs a `label` (whats shown), and a `link`
# (where it goes). An item can optionally have a dropdown
# submenu via `sub`.
menu:
- label: 'User Guide'
link: '/howtoguide/'
- label: 'Search'
link: '/search/'
- label: 'Browse'
sub:
- label: 'Browse Data Visualizations'
link: '/datavis/'
- label: 'Browse Data Sets'
link: '/datasets/'
# --------------------------------------------------------------
# - label: 'Featured'
# sub:
# - label: 'Featured Article A'
# link: '/featured/a/'
# - label: 'Featured Article B'
# link: '/featured/b/'
# --------------------------------------------------------------
# --------------------------------------------------------------
# SITE FOOTER SETTINGS
# - label: 'Browse'
# sub:
# - label: 'Browse Data Visualizations'
# link: '/collection/datavis/'
# - label: 'Browse Data Sets'
# link: ''/collection/dataset/'
# --------------------------------------------------------------
#
footer:
links:
- label: 'GitHub'
link: 'https://github.com/visualizingthefuture/examples-repository'
- label: 'Credits'
link: '/credits'
logos:
- img: '/img/logo.png'
# FIN