forked from minicomp/wax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
142 lines (129 loc) · 4.15 KB
/
_config.yml
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
# ==============================================================
# WAX 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: 'Wax'
description: 'Minimal Exhibitions with Jekyll'
url: 'https://minicomp.github.io'
baseurl: '/wax'
copyright: 'Example copyright org, 2019'
logo: '/assets/logo.png'
# ---------------------------------------------------------------
# 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
# --------------------------------------------------------------
# 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
qatar: # name of collection
output: true # makes sure pages are output as html files
layout: 'qatar_item' # the layout for the pages to use
metadata:
source: 'qatar.csv' # path to the metadata file within `_data`
images:
source: 'raw_images/qatar' # 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:
qatar:
content: false # whether or not to index page content
fields: # the metadata fields to index
- artist
- location
- label
- _date
- object_type
- current_location
# --------------------------------------------------------------
# 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: 'About'
sub:
- label: 'Wax'
link: '/about/'
- label: 'Documentation'
link: 'https://minicomp.github.io/wiki/wax/'
- label: 'Credits'
link: '/credits/'
- label: 'Exhibits'
sub:
- label: 'Inline Parallax Image'
link: '/exhibits/a/'
- label: 'Inline Image References'
link: '/exhibits/b/'
- label: 'Browse'
link: '/collection/'
- label: 'Search'
link: '/search/'
- label: 'Reuse'
link: '/reuse/'
# --------------------------------------------------------------
# SITE FOOTER SETTINGS
# --------------------------------------------------------------
#
footer:
links:
- label: 'GitHub'
link: 'https://github.com/minicomp/wax'
- label: 'Credits'
link: '/credits'
- label: 'Contact'
link: 'https://gitter.im/minicomp/wax/'
logos:
- img: '/img/logo.png'
# FIN