forked from heiswayi/the-plain
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path_config.yml
76 lines (72 loc) · 1.75 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
# Site Info
title: "The Plain Academic"
description: "My academic site"
author_name: "Breno Viana" # change this to your name
logo_url: https://avatars3.githubusercontent.com/u/17532418?s=460&v=4 # Get it from GitHub API: https://api.github.com/users/<username>
# Site Settings
url: https://brenov.github.io # main url
baseurl: /the-plain-academic
permalink: /:title # Post permalink
timezone: America/Recife # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
mathjax: true # enables support for mathjax - set to 'false' to disable
# Site Build
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
sass:
style: :compressed
# Other Params
include: [ "robots.txt" ]
exclude: [ "LICENSE", "README.md", "CNAME", "vendor", "Gemfile", "script" ]
plugins:
- jekyll-sitemap
collections:
researches:
output: true
permalink: /researches/:name
projects:
output: true
permalink: /projects/:name
talks:
output: true
permalink: /talks/:name
blog:
output: true
permalink: /blog/:name
defaults:
-
scope:
path: ""
values:
layout: "null"
-
scope:
type: "pages"
values:
layout: "page"
-
scope:
type: "posts"
values:
layout: "post"
-
scope:
type: "researches"
values:
layout: "research-post"
-
scope:
type: "projects"
values:
layout: "post"
-
scope:
type: "talks"
values:
layout: "post"
-
scope:
type: "blog"
values:
layout: "post"