forked from FredHutch/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
233 lines (204 loc) · 5.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
plugins:
- jekyll-remote-theme
remote_theme: mmistakes/minimal-mistakes
minimal_mistakes_skin: contrast
# Site Settings
locale: en-US
title: "Fred Hutch Biomedical Data Science Wiki"
description: "Collective documentation for Genomics, Bioinformatics and Scientific Computing at the Fred Hutch"
url : https://sciwiki.fredhutch.org
baseurl : ""
repository : "FredHutch/wiki"
collections:
generation:
output: true
permalink: /:collection/:path/
gendemos:
output: true
permalink: /:collection/:path/
scicomputing:
output: true
permalink: /:collection/:path/
contributors:
output: true
permalink: /:collection/:path/
compdemos:
output: true
permalink: /:collection/:path/
scicompannounce:
output: true
permalink: /:collection/:path/
drafts:
output: true
permalink: /:collection/:path/
pythonModules:
output: true
permalink: /:collection/:path/
rModules:
output: true
permalink: /:collection/:path/
atom_feed:
path : /scicompannounce/ # blank (default) uses feed.xml
search : false #, false (default)
search_full_content : false #, false (default)
#Note: Only the first 50 words of a post or page’s body content is added to the Lunr search index. Setting search_full_content to true in your _config.yml will override this and could impact page load performance.
# search_provider : google #(default), algolia
# Can use google search, here are instructions: https://mmistakes.github.io/minimal-mistakes/docs/configuration/
google:
search_engine_id: 008250600098126702450:xciawyvddl8
# Analytics
analytics:
provider : "google" # false (default), "google", "google-universal", "custom"
google:
tracking_id : UA-123256805-1
# New as of 8/2019
footer:
links:
- label: "See our GitHub Repo"
icon: "fab fa-fw fa-github"
url: "https://github.com/FredHutch/wiki"
- label: "Join the Conversation on Slack"
icon: "fab fa-fw fa-slack"
url: "https://fhbig.slack.com/"
- label: "See our Contributors"
icon: "fas fa-user-edit"
url: /contributors/
- label: "Find Training"
icon: "fas fa-chalkboard-teacher"
url: "https://www.fredhutch.io/"
- label: "About this Project"
icon: "fas fa-landmark"
url: /about/
# Reading Files
include:
- _data
- assets
- _layouts
# Outputting
permalink: /:categories/:title/
paginate: 5 # amount of posts to show
paginate_path: /page:num/
timezone: America/Los_Angeles # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Plugins (previously gems:)
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-gist
- jemoji
- jekyll-include-cache
- jekyll-archives
# mimic GitHub Pages with --safe
whitelist:
- jekyll-paginate
- jekyll-sitemap
- jekyll-gist
- jemoji
- jekyll-include-cache
# Defaults
###NOTE: for sciwiki, share: true will turn on the "Edit this page" function at the bottom of the pages
defaults:
# _generation
- scope:
path: ""
type: generation
values:
layout: single
toc: true
toc_label: "On This Page"
share: true
sidebar:
nav: "generation"
# _gendemos
- scope:
path: ""
type: gendemos
values:
layout: single
toc: true
toc_label: "On This Page"
share: true
sidebar:
nav: "generation"
# _compdemos
- scope:
path: ""
type: compdemos
values:
layout: single
toc: true
toc_label: "On This Page"
share: true
sidebar:
nav: "scicomputing"
# _scicomputing
- scope:
path: ""
type: scicomputing
values:
layout: single
toc: true
toc_label: "On This Page"
share: true
sidebar:
nav: "scicomputing"
# _contributors
- scope:
path: ""
type: contributors
values:
layout: single
share: false
# _scicompannounce
- scope:
path: ""
type: scicompannounce
values:
layout: single
share: true
sidebar:
nav: "scicomputing"
# _drafts
- scope:
path: ""
type: drafts
values:
layout: single
toc: true
toc_label: "On This Page"
share: true
# _posts
- scope:
path: ""
type: posts
values:
layout: single
author_profile: true
read_time: true
share: true
sidebar:
nav: "scicomputing"
# _rModules
- scope:
path: ""
type: rModules
values:
layout: single
share: true
sidebar:
nav: "scicomputing"
# _pythonModules
- scope:
path: ""
type: pythonModules
values:
layout: single
share: true
sidebar:
nav: "scicomputing"
webrick:
headers:
Access-Control-Allow-Origin: "*"
access-control-allow-origin: "*"
Access-Control-Allow_Credentials: "true"
Access-Control-Allow-Headers: "Authorization,Accept,Origin,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range"
Access-Control-Allow-Methods: "GET,POST,OPTIONS,PUT,DELETE,PATCH"