-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
128 lines (113 loc) · 3.44 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
# Name of your site
name: Vorpal Dice Press
logo: /img/svg/VDP.svg
logo_simple: /img/svg/VDP-solo.svg
# description of the site for metadata. Visible in things like google searches and hotlinks. Should be very short.
description_meta: Test site for Vorpal Dice Press
# Site description for the footer, and any other places its displayed
description: Suspendisse pulvinar porta dapibus. Phasellus posuere diam cursus aliquet gravida. Nulla est sapien, laoreet non metus et, molestie dignissim felis. Curabitur laoreet nisi sapien, eu malesuada augue volutpat sed.
# Your name/username
author: Steve Fidler
# socials
email: [email protected]
facebook: vorpaldicepress
twitter: vorpaldicepress
# Your website URL. Used for Sitemap.xml and your RSS feed
url: https://vorpal.borntodostuff.com
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
google_analytics:
# Put the number portion of your DmsGuild affiliate link here if you have one
guild_affiliate: 1713687
# If you're hosting your site at a Project repository on GitHub pages (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io) then add in the baseurl here, like this: "/repository-name"
#baseurl: ""
collections:
pages:
output: true
defaults:
- scope:
path: "" # an empty string here means all files in the project
type: "posts"
values:
layout: default
- scope:
path: _pages
values:
permalink: /:title/
title: Page Title
public: false
order: 999
- scope:
path: _posts/blogs
values:
layout: blog
permalink: /blog/:title/
title: New Blog Post
categories: [blogs]
- scope:
path: _posts/products
values:
layout: product
permalink: /product/:title/
title: New Product
categories: [products]
- scope:
path: _posts/reviews
values:
layout: review
permalink: /review/:title/
title: New Review
categories: [reviews]
product_image_anchor: top
- scope:
path: _posts/drafts/blogs
values:
layout: blog
permalink: /:categories/:title/
title: New Blog Draft
categories: [drafts, blogs]
- scope:
path: _posts/drafts/products
values:
layout: product
permalink: /:categories/:title/
title: New Product Draft
categories: [drafts, products]
- scope:
path: _posts/drafts/reviews
values:
layout: review
permalink: /:categories/:title/
title: New Review Draft
categories: [drafts, reviews]
excerpt_separator: "<!--excerpt-->"
excerpt_length: 150
permalink: /:title/
paginate: 10
paginate_path: "/page/:num/"
#sets the maximum number of blogs visible on the homepage
blog_limit: 1
#sets the maximum number of blogs visible on the homepage
review_limit: 3
#########################################
# DONT CHANGE THESE #
#########################################
# The release of Jekyll Now that you're using
version: v3.8.5
# Jekyll 3 now only supports Kramdown for Markdown
kramdown:
parse_block_html: true
sass:
style: :compressed
# Use the following plug-ins
gems:
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
- jekyll-feed # Create an Atom feed using the official Jekyll feed gem
- jekyll-paginate
# Exclude these files from your production _site
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- CNAME