-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
262 lines (228 loc) · 6.76 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
################################################################################
# Site settings
#
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
################################################################################
title: GenZ Bank
logo: /assets/logo.svg
email: [email protected]
description: >-
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.
################################################################################
# Where things are
################################################################################
source: .
destination: ./_site
plugins_dir: _plugins # takes an array of strings and loads plugins in that order
layouts_dir: _layouts
data_dir: _data
includes_dir: _includes
#sass:
# sass_dir: _sass
#collections_dir: src
collections:
posts:
output: true
networks:
output: true
roles:
output: true
resources:
output: true
businesses:
output: true
################################################################################
# Handling Reading
################################################################################
safe: false
include:
- .htaccess
#
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
exclude:
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- node_modules/
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
keep_files:
- .git
- .svn
#
# Set the encoding of files by name (only available for Ruby 1.9 or later). The
# default value is utf-8 starting in 2.0.0, and nil before 2.0.0, which will
# yield the Ruby default of ASCII-8BIT
#
encoding=: "utf-8"
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
strict_front_matter: false
################################################################################
# Filtering Content
################################################################################
show_drafts: null
limit_posts: 0
future: false
unpublished: false
################################################################################
# Plugins
################################################################################
whitelist: []
plugins:
- jekyll-feed
- jekyll-seo-tag
################################################################################
# Conversion
################################################################################
markdown: kramdown
highlighter: rouge
lsi: false
excerpt_separator: "\n\n"
incremental: false
################################################################################
# Serving
################################################################################
detach: false
port: 4000
host: 127.0.0.1
#
# the subpath of your site, e.g. /blog
#
baseurl: "/organization"
#
# the base hostname & protocol for your site, e.g. https://example.com
#
url: ""
show_dir_listing: false
################################################################################
# Outputting
################################################################################
permalink: date
paginate_path: /page:num
timezone: null
quiet: false
verbose: false
defaults:
-
scope:
type: "networks"
values:
layout: "network"
category: "network"
-
scope:
type: "roles"
values:
layout: "role"
category: "roles"
-
scope:
type: "businesses"
values:
layout: "business"
category: "business"
-
scope:
type: "resources"
values:
layout: "resource"
category: "resource"
-
scope:
type: "posts"
values:
layout: "post"
category: "post"
#liquid:
# error_mode: warn
# strict_filters: false
# strict_variables: false
################################################################################
# Markdown Processors
################################################################################
kramdown:
auto_ids: true
entity_output: as_char
toc_levels: [1, 2, 3, 4, 5, 6]
smart_quotes: lsquo,rsquo,ldquo,rdquo
input: GFM
hard_wrap: false
footnote_nr: 1
show_warnings: false
################################################################################
# Theme
################################################################################
# Build settings
theme: null
#
# Jekyll 4.0 started allowing themes to bundle a _config.yml to simplify
# theme-onboarding for new users. In the unfortunate situation that importing a
# bundled theme configuration messes up the merged site-configuration, the user
# can configure Jekyll to not import the theme-config entirely.
#
ignore_theme_config: true
#
# This allows you to set which pages you want to appear in the navigation area
# and configure order of the links.
#
header_pages:
- businesses.html
- roles.html
- networks.html
- resources.html
- about.html
#
# You can add links to the accounts you have on other sites, with respective
# icon, by adding one or more of the following options in your config:
#
#twitter_username: jekyllrb
github_username: genz-bank
#dribbble_username: jekyll
#facebook_username: jekyll
#flickr_username: jekyll
#instagram_username: jekyll
#linkedin_username: jekyll
#pinterest_username: jekyll
#youtube_username: jekyll
rss: rss
#
# To enable Google Analytics, add the following lines to your Jekyll site:
#
# Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
#
google_analytics: UA-NNNNNNNN-N
#
# To display post-excerpts on the Home Page, simply add the following to
# your `_config.yml`:
#
show_excerpts: true