-
Notifications
You must be signed in to change notification settings - Fork 52
/
_config.yml
69 lines (59 loc) · 1.84 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
# The main config file for your Jekyll template
# Site settings
title: Jackal # used for the html title of every page
desc: >
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
url: http://jackal.com # put your website hosting url here
baseurl: '' # the subpath of your site, e.g. /blog
permalink: /:year/:title/ # how should we display posts url
# Meta settings
email: [email protected]
author: The Jackal
twitter_username: clenemt
github_username: clenemt
github_source: jackal
# Put your ga tracking code below
google_analytics: 'UA-XXXXXXXX-X'
# Pagination settings
paginate: 5 # number of posts to show per page
paginate_path: "/articles/page:num/" # link scheme for articles, should be letf as is
# Navigation settings
# Used to define the navigation menu items
# > Title is the tile of the navigation item, url the url and desc is the tooltip
navigation:
- title: Articles
url: /articles/
desc: Stuffs I write about
- title: Projects
url: /projects/
desc: Stuffs I like to do
- title: Work
url: /work/
desc: Stuffs I hate to do
- title: About
url: /about/
desc: Learn about me
# Used by Jekyll to recognize what is a post and what is a page
defaults:
-
scope:
path: ''
type: posts
values:
layout: post
# Markdown parser settings
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false # you can change this if you feel like it
parse_block_html: true # allow parsing html inside markdown
# Build settings
include:
- _pages # all your pages can be put inside pages (except articles)
exclude:
- README.md
- vendor
gems:
- jekyll-paginate