-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
104 lines (97 loc) · 1.78 KB
/
_config.yml
File metadata and controls
104 lines (97 loc) · 1.78 KB
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
# Jekyll Configuration for Doc's Journey
title: "Doc's Journey"
description: "Perseverance leads creation - Drew E. Brown 'Doc' 'Doc's' Portfolio"
author: "Drew Brown 'Doc'"
email: "drew.brown@valorrate.com"
url: "https://deber0.com"
baseurl: ""
# Build settings
markdown: kramdown
highlighter: rouge
permalink: /:categories/:title/
# Collections
collections:
projects:
output: true
permalink: /:collection/:name/
courses:
output: true
permalink: /:collection/:name/
hobbies:
output: true
permalink: /:collection/:name/
documentation:
output: true
permalink: /:collection/:name/
# Navigation
navigation:
- title: "Home"
url: /
- title: "Resume"
url: /resume/
- title: "Courses"
url: /courses/
- title: "Projects"
url: /projects/
- title: "Documentation"
url: /documentation/
- title: "Hobbies"
url: /hobbies/
# Theme and plugins
theme: minima
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Exclude files from processing
exclude:
- _source/
- _build/
- docs/
- Makefile
- make.bat
- requirements.txt
- vendor/
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- node_modules/
- package.json
# Include files
include:
- _pages
# Defaults
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
author: "Drew Brown"
- scope:
path: ""
type: "pages"
values:
layout: "page"
- scope:
path: ""
type: "projects"
values:
layout: "project"
- scope:
path: ""
type: "courses"
values:
layout: "course"
- scope:
path: ""
type: "hobbies"
values:
layout: "hobby"
- scope:
path: ""
type: "documentation"
values:
layout: "documentation"