-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path_config.yml
66 lines (60 loc) · 1.23 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
# Site settings
title: JEFworks Lab
email: [email protected]
description: "Lab website of Prof. Jean Fan and team work at Johns Hopkins University"
baseurl: "" # the subpath of your site, e.g. /blog/
url: 'http://jefworks-lab.github.io/'
google_analytics: 'UA-35232680-3'
# theme options from https://bootswatch.com/
# comment out this to use default Bootstrap
bootwatch: custom
# Build settings
markdown: kramdown
highlighter: rouge
plugins:
- jekyll-feed
- jekyll-redirect-from
- jekyll-seo-tag
- jekyll-sitemap
exclude:
- Gemfile
- Gemfile.lock
- .gitignore
defaults:
- scope:
path: _posts
type: posts
values:
layout: post
sectionid: blog
- scope:
path: _papers
type: papers
values:
layout: paper
sectionid: publications
- scope:
path: _news
type: news
values:
layout: pages
sectionid: announcements
- scope:
path: _team
type: team
values:
layout: pages
sectionid: team
collections:
papers:
permalink: /papers/:year/:month/:day/:title/
output: true
posts:
permalink: /blog/:year/:month/:day/:title/
output: true
news:
permalink: /announcements/:year/:month/:day/:title/
output: true
team:
permalink: /team/:title/
output: true