forked from DIYbiosphere/sphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
157 lines (148 loc) · 2.84 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Site settings
title: DIYbiosphere
email: contact@contact.com
description: "A collaborative database of Do-it-Yourself Biology initiatives"
baseurl: "" # the subpath of your site, e.g. /blog
url: "sphere.diybio.org"
permalink: /news/:year/:month/:day/:title
repository: "DIYbiosphere/sphere"
github_username: "DIYbiosphere"
twitter:
username: DIYbiosphere
# Excluded files and dirs
exclude: [script, Gemfile, Gemfile.lock, README.md, DataReusePlan.txt, .assets-cache, .sass-cache]
# Jekyll assets plugin
assets:
compress:
css: sass
js: uglifier
autoprefixer:
browsers:
- "last 2 versions"
- "IE > 9"
assets:
- "*.png"
- "*.gif"
- "*.jpg"
- "*.svg"
sources:
- _assets
- _assets/img
- _assets/js
- _assets/css
- _assets/fonts
# Where things are
source: .
destination: ./_site
plugins_dir: ./_plugins
layouts_dir: ./_layouts
data_dir: ./_data
includes_dir: ./_includes
# Build settings
markdown: kramdown
gems:
- jemoji
- jekyll-gist
- jekyll-assets
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-mentions
- jekyll-github-metadata
- algoliasearch-jekyll
algolia:
application_id: 'ITI5JHZJM9'
index_name: 'diybiosphere'
# Collections
collections:
projects:
title: Projects
output: true
permalink: /database/projects/
startups:
title: Startups
output: true
permalink: /database/startups/
labs:
title: Labs
output: true
permalink: /database/labs/
incubators:
title: Incubators
output: true
permalink: /database/incubators/
groups:
title: Groups
output: true
permalink: /database/groups/
networks:
title: Networks
output: true
permalink: /database/networks/
events:
title: Events
output: true
permalink: /database/events/
others:
title: Others
output: true
permalink: /database/others/
# Default Values
defaults:
-
scope:
path: ''
values:
layout: landing
-
scope:
type: posts
values:
layout: post
-
scope:
type: projects
values:
layout: entry
permalink: /database/projects/:title
-
scope:
type: startups
values:
layout: entry
permalink: /database/startups/:title
-
scope:
type: labs
values:
layout: entry
permalink: /database/labs/:title
-
scope:
type: incubators
values:
layout: entry
permalink: /database/incubators/:title
-
scope:
type: groups
values:
layout: entry
permalink: /database/groups/:title
-
scope:
type: networks
values:
layout: entry
permalink: /database/networks/:title
-
scope:
type: events
values:
layout: entry
permalink: /events/:title
-
scope:
type: others
values:
layout: entry
permalink: /others/:title