-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
129 lines (108 loc) · 2.48 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
128
129
# --- General options --- #
# url is the full website URL
# baseurl is the website's URL without the hostname
url: "https://hpsee.github.io"
baseurl: "/cyberteam"
# Name of website
title: CyberTeam
email: [email protected]
# Short description of your site
description: Northeast Cyberteam
github_user: hpsee
github_repo: cyberteam
repo: https://www.github.com/hpsee/cyberteam
# --- Navigation bar options --- #
# Image to show in the navigation bar - image must be a square (width = height)
# Remove this parameter if you don't want an image in the navbar
avatar: "/assets/img/avatar-icon.png"
# Collections
collections:
docs:
output: true
permalink: /:collection/:path/
projects:
output: true
permalink: /:collection/:path/
people:
output: true
permalink: /:collection/:path/
resources:
output: true
permalink: /:collection/:path/
defaults:
- scope:
path: "_docs"
type: "docs"
values:
layout: page
- scope:
path: "_resources"
type: "resources"
values:
layout: resource
- scope:
path: "_projects"
type: "projects"
values:
layout: project
- scope:
path: "_people"
type: "people"
values:
layout: person
-
scope:
path: ""
type: "pages"
values:
layout: "page"
-
scope:
path: "_posts"
type: "posts"
values:
layout: "post"
# --- Footer options --- #
# Change all these values or delete the ones you don't want.
# Important: you must keep the "name" parameter, everything else you can remove
author:
name: "vsoch"
github: vsoch
twitter: vsoch
# Select which share links to show in posts
share-links-active:
twitter: true
facebook: false
google: false
linkedin: false
# --- Web Statistics Section --- #
# Fill in your Google Analytics ID to track your website using GA
# google_analytics: "UA-XXXXXXXXXX"
# Excerpt Word Length
# Truncates the excerpt to the specified number of words on the index page
excerpt_length: 50
# Output options (more information on Jekyll's site)
timezone: "America/New_York"
markdown: kramdown
highlighter: rouge
permalink: /posts/:year-:month-:day-:title/
paginate: 5
kramdown:
input: GFM
# Use tags index page and make tags on each post clickable
link-tags: true
# Exclude these files from production site
exclude:
- _site
- CHANGELOG.md
- CNAME
- Dockerfile
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- tests
- vendor
plugins:
- jekyll-paginate
- jekyll-sitemap