-
Notifications
You must be signed in to change notification settings - Fork 7
/
_config.yml
127 lines (112 loc) · 2.14 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
baseurl: ''
url: http://dhlab.yale.edu
# render posts with dates in the future
future: true
# minify html in production
minify_html: true
# create lunr index
create_index: true
# bust cache
bust_cache: true
# minify js
compress_js: true
# minify assets
sass:
style: compressed
load_paths:
- node_modules
# render collections
collections:
resources:
output: true
events:
output: true
news:
output: true
projects:
output: true
guides:
output: true
methods:
output: true
awards:
output: true
opportunities:
output: true
team:
output: false
about:
output: true
# default layouts
defaults:
- scope:
path: ''
type: 'news'
values:
layout: news
- scope:
path: ''
type: 'events'
values:
layout: event
- scope:
path: ''
type: 'guides'
values:
layout: guide
- scope:
path: ''
type: 'methods'
values:
layout: method
- scope:
path: ''
type: 'projects'
values:
layout: project
- scope:
path: ''
type: 'resources'
values:
layout: resource
- scope:
path: ''
type: 'awards'
values:
layout: award
- scope:
path: ''
type: 'opportunities'
values:
layout: opportunity
# social media
twitter: YaleDHLab
instagram: yaledhlab
facebook: YaleDHLab
github: YaleDHLab
email: [email protected]
phone: 203-432-123
# newsletter url
newsletter: 'https://subscribe.yale.edu/browse?search=digital+humanities'
# submit news url
submit_news: 'https://docs.google.com/forms/d/1HvwWecpYODW3DoMVTnJy7beOMfechLPIiVhV5ekvYNI'
# request consultation
consultation: 'https://docs.google.com/forms/d/e/1FAIpQLSe4Lyo8EEdoiTLosfnmOUNEsZZToCD_n7dZ10ypCerw4diJGA/viewform?usp=sf_link'
# configure gems
plugins:
- octopress-minify-html
# minify css and js with webpack
keep_files:
- 'assets/bundle.js'
- 'assets/js/search/index.json'
- 'assets/js/search/id-to-metadata.json'
# exclude node files from build directory
exclude:
- 'node_modules'
- 'utils'
- 'yarn.lock'
- 'package.json'
- '.jekyll-metadata'
- 'Gemfile.lock'
- 'Gemfile'
- 'README.md'