forked from nicnic-cc/dactl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_config.yml
More file actions
120 lines (100 loc) · 4.15 KB
/
_config.yml
File metadata and controls
120 lines (100 loc) · 4.15 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Base blog settings
baseurl : '' # the subpath of your site, # e.g. /blog/
# set to '' in case of hosting on GitHub
url : "http://devlup-fsu.github.io" # the base hostname & protocol for your site
# `http://<username>.github.io` - for GitHub
blog:
title : DevLUp FSU
description : >
The official site for FSU's best and favorite (only)
game development club!
homepagetext : >
Welcome to site for DevLUp FSU! Below are materials and notes from our meetings, as well as any updates we've posted on the state of our club!
Join our Discord server to keep up to date with our meetings and events!
# Layout configuration
logo_path : "assets/img/DevlupLogo.svg" # path to logo file
search_path : # "yourgitusername.github.io"
# needed for searchbox in archive page
hero_layout : true # turn on hero layout for blog and posts
hero_placeholder : "assets/img/generic_hero.jpg" # placeholder for hero image
excerpts : true # show excerpts instead of full post content on blog page
inline_footnotes : true # enable/disable barefoot inline footnotes
titles_only : false # show post titles only on main blog page
# Fonts
font : '"Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif'
load_google_fonts : 'Open Sans:400,400italic,700,700italic'
# Author info
author:
fullname : DevLUp FSU Board and Contributors
rss : true # generate RSS feed and show it's icon in header
mail : fsu.gamedev.club@gmail.com
github : devlup-fsu
youtube : "@DevLUpFSU"
# add this at some point
# discordserver : "@DevLUpFSU"
## !!
## Advanced blog settings
## You should not change anything here unless you know what you are doing
# Gems
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-redirect-from
# Permalinks
permalink : posts/:slug
# Posts
excerpt_separator : <!–-break-–>
# Pagination
paginate : 5
paginate_path : '/page-:num/'
# Tags
collections:
my_tags:
output: true
permalink: /tag/:slug/
defaults:
-
scope:
path: ""
type: my_tags
values:
layout: blog-by-tag
# Handling Reading
exclude : ["README.md", "README.html"]
# https://github.com/jekyll/jekyll/issues/4619
# Markdown and highlighter settings
markdown: kramdown
# !github-pages! mandatory › https://help.github.com/articles/using-jekyll-with-pages/#configuration-settings-you-cannot-change
# Since Jekyll 3 the default highlighter is Rouge (replaced Pygments.rb in v44)
highlighter: rouge
# More › http://kramdown.gettalong.org/quickref.html
# Options › http://kramdown.gettalong.org/options.html
kramdown:
input: GFM
# https://github.com/jekyll/jekyll/pull/4090
syntax_highlighter: rouge
# Rouge Highlighter in Kramdown › http://kramdown.gettalong.org/syntax_highlighter/rouge.html
# span, block element options fall back to global
syntax_highlighter_opts:
# Rouge Options › https://github.com/jneen/rouge#full-options
# css_class: 'highlight'
#line_numbers: true # bad idea, spans don't need linenos and would inherit this option
span:
line_numbers: false
block:
line_numbers: true
start_line: 1
# Sass settings
sass:
sass_dir : _sass
style : compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# HTML Compression
# - http://jch.penibelst.de/
compress_html:
clippings : all
endings : all
comments : ["<!-- ", " -->"]
blanklines : true
profile : false
ignore:
envs : [local]