-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
125 lines (104 loc) · 2.73 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
### Site Settings ###
title : Robert Marzec
description : a software developer's website
baseurl : "" # Change to empty quotes if you are hosting your site at <your-username>.github.io directly
### Plugins ###
plugins:
- jemoji
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-redirect-from
### Navbar Settings ###
nav_include:
- pages/**
nav_exclude: # The following paths are excluded from navbar
- pages/privacy
- pages/404
### Author Info ###
author:
name : Robert Marzec
image : /assets/images/about-photo.jpg
# behance : your_username
# dribbble : your_username
email : [email protected]
# facebook : your_username
github : rjmarzec
# gitlab : your_username
# instagram : your_username
linkedin : rjmarzec
# medium : your_username
# soundcloud : your_username
# spotify : your_username
# stackoverflow : your_user_id
# tumblr : your_username.tumblr.com
# twitch : your_username
twitter : rjmarzec_
# vimeo : your_username
# youtube : your_channel_name
### Posts ###
permalink: /blog/:title
### Collections ###
collections_dir: collections
collections:
# projects:
# output: true
# permalink: /projects/:name
### Disqus ###
disqus:
shortname: rjmarzec # Your website Shortname on disqus
### Analytics ###
analytics:
enabled: true # Set true to enable analytics
google:
tracking_id: UA-187912924-1
### Defaults for collections ###
defaults:
- scope:
path: "projects/*/about.md"
type: "pages"
values:
layout: "page"
read_time: false
comments: false
permalink: "/:path"
- scope:
path: "projects/*/play.md"
type: "pages"
values:
layout: "page"
read_time: false
comments: false
permalink: "/:path/play"
- scope:
path: "projects/*/postmortem.md"
type: "pages"
values:
layout: "post"
read_time: true
comments: true
permalink: "/:path/postmortem"
- scope:
path: "projects/~template/"
type: "pages"
values:
published: false
### Exclude from processing ###
exclude:
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- node_modules/
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- README.md
- CONTRIBUTING.md
- LICENSE
- '*.log'
- '*.css'
- 'projects/*/*/index.html'
### Enabling incremental builds to improve build times locally
incremental: true