-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
382 lines (354 loc) · 11.6 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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
# 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 }}.
# Theme Settings
#
# Review documentation to determine if you should use `theme` or `remote_theme`
# https://drupix.github.io/jekyll-theme-quarkyll/docs/quick-start-guide/#installing-the-theme
theme : "jekyll-theme-quarkyll"
# remote_theme : "drupix/jekyll-theme-quarkyll"
# Theme options: (added as body class)
theme_options: [
header-fixed, # When enabled, the header will be fixed at the top of the browser
header-animated, # When enabled, the header will animate to a smaller header when scrolling
header-dark, # When enabled, a dark-friendly style will be used
#header-transparent, # When enabled, a transparent style will be used
sticky-footer, # When enabled, the footer will be sticky at the bottom of the browser
footer-dark, # When enabled, a dark-friendly style will be used
]
# Grid size: grid-sm, grid-md grid-lg grid-xl
grid-size : grid-xl
header-grid-size : grid-xl
# Other config
locale : "fr-CH"
title : Quarkyll Theme
title_separator : "-"
slogan : "Development Test Site"
description : "Quarkyll theme test."
favicon : # path of favicon image to display in browser tab, e.g. "/assets/images/favicon.ico"
# Logo functionality
# If logo_light is defined, logo will automatically switch between
# logo and logo_light depending on theme_options[header-dark] and/or
# theme_options[header-transparent] if defined.
# This allow for example to automatically switch between the logo and her lighter version
#
# Note that both logo and logo_light are otionals but if you want to display a logo
# you must define the logo variable
logo : "/assets/images/logo-quarkyll-light.png" # path of logo image to display in the header, e.g. "/assets/images/logo.png"
logo_light : "/assets/images/logo-quarkyll-light.png" # path of alternate logo image to display in the header, e.g. "/assets/images/logo.png"
url : # the base hostname & protocol for your site e.g. "https://drupix.github.io"
baseurl : "/test" # the subpath of your site, e.g. "/blog"
repository :
# Plugins (previously gems:)
plugins:
- jekyll-sitemap
- jekyll-gist
# - jekyll-feed
# - jekyll-include-cache
# mimic GitHub Pages with --safe
whitelist:
- jekyll-sitemap
- jekyll-gist
# - jekyll-feed
# - jekyll-include-cache
# Archives
# Type
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
# Path (examples)
# - Archive page should exist at path when using Liquid method or you can
# expect broken links (especially with breadcrumbs enabled)
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
# - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
# - <base_path>/my-awesome-category/index.html ~> path: /
category_archive:
type: liquid
path: /categories/
tag_archive:
type: liquid
path: /tags/
# https://github.com/jekyll/jekyll-archives
# jekyll-archives:
# enabled:
# - categories
# - tags
# layouts:
# category: archive-taxonomy
# tag: archive-taxonomy
# permalinks:
# category: /categories/:name/
# tag: /tags/:name/
# SEO Related
google_site_verification :
bing_site_verification :
yandex_site_verification :
alexa_site_verification :
naver_site_verification :
# Social Sharing
twitter:
username : "drupix"
facebook:
username : "enzo-drupix"
app_id :
publisher :
og_image : "/assets/images/logo-quarkyll.png" # Open Graph/Twitter default site image
# For specifying social profiles, used in _includes/seo.html
# - https://developers.google.com/structured-data/customize/social-profiles
# social:
# type : # Person or Organization (defaults to Person)
# name : # If the user or organization name differs from the site's name
# links : # An array of links to social media profiles
# - "https://twitter.com/drupix"
# - "https://www.facebook.com/enzo-drupix"
# Social media links - (by defaults they are displayed in the pre-footer)
social_media:
links:
- title: "Say Hello"
icon: 'la la-envelope'
url: "mailto:[email protected]"
- title: "Facebook"
icon: 'lab la-facebook'
url: "https://www.facebook.com/your-facebook-username"
- title: "Twitter"
icon: 'lab la-twitter'
url: "https://www.twitter.com/your-twitter-name"
- title: "Drupal"
icon: 'lab la-drupal'
url: "https://www.drupal.org/u/drupix"
- title: "GitHub"
icon: 'lab la-github'
url: "https://github.com/drupix"
# Analytics
# analytics:
# provider : false # false (default), "google", "google-universal", "google-gtag", "custom"
# google:
# tracking_id :
# anonymize_ip : # true, false (default)
# Site Author
author:
name : "Your Name"
avatar : "/assets/images/bio-photo.jpg"
bio : "I am an **amazing** person."
location : "Somewhere on Earth"
twitter : "@YourName"
links:
- label: "Your Website"
icon: "las la-link"
url: "https://your-site.com"
- label: "Twitter"
icon: "lab la-twitter"
url: "https://twitter.com/"
- label: "GitHub"
icon: "lab la-github"
url: "https://github.com/"
- label: "Instagram"
icon: "lab la-instagram"
url: "https://instagram.com/"
# 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.
#
include:
- .htaccess
- _pages
exclude:
- "*.vscode"
# - vendor
- .asset-cache
- .bundle
# - .jekyll-assets-cache
# - .jekyll-cache/
- .sass-cache/
# - assets/js/plugins
# - assets/js/vendor
# - assets/js/site.js
# - assets/js/quarkyll-bootstrap.js
- CHANGELOG
- config
- gemfiles/
- Gemfile
- Gemfile.lock
- LICENSE
- node_modules/
- Rakefile
- README
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
keep_files:
- .git
- .svn
encoding: "utf-8"
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
# Build Command Options - https://jekyllrb.com/docs/configuration/options/#build-command-options
# Cause a build to fail if there is a YAML syntax error in a page's front matter.
# Usefull for testing
strict_front_matter: true
# Liquid - https://jekyllrb.com/docs/configuration/liquid/
liquid:
error_mode: strict
# strict_variables: true
# strict_filters: true
# Conversion
markdown: kramdown
highlighter: rouge
lsi: false
excerpt_separator: "\n\n"
incremental: false
# TODO: check here
# Markdown Processing
# see https://jekyllrb.com/docs/configuration/markdown/#custom-markdown-processors
# and https://kramdown.gettalong.org/options.html
kramdown:
input: GFM
# auto_ids: false
# hard_wrap: false
# footnote_nr: 1
# entity_output: as_char
# toc_levels: 1..6
# smart_quotes: lsquo,rsquo,ldquo,rdquo
# enable_coderay: false
# Sass/SCSS
sass:
sass_dir: _sass
style: compressed #expanded # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# Outputting
permalink: /:categories/:title/
# paginate: 5 # amount of posts to show
# paginate_path: /page:num/
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# HTML Compression
# - http://jch.penibelst.de/
compress_html:
clippings: all
ignore:
envs: development
# Collections
collections:
docs:
output: true
display_label: Documentation
icon: "las la-book"
permalink: /:collection/:path/
weight: 0
recipes:
output: true
display_label: Recipes
icon: "las la-utensils"
permalink: /:collection/:path/
weight: 3
pets:
output: true
display_label: Animals
icon: "las la-otter"
permalink: /:collection/:path/
weight: 2
portfolio:
output: true
display_label: Portfolio
#icon: "las la-briefcase"
icon: "las la-code"
permalink: /:collection/:path/
weight: 1
# Defaults
defaults:
# _posts
- scope:
path: ""
type: posts
values:
layout: single
classes: title-center title-h1h2
author_profile: true
read_time: true
share: true
related: true
# _pages
- scope:
path: "_pages"
type: pages
values:
layout: page
author_profile: false
# _docs
- scope:
path: "_docs"
type: docs
values:
layout: single
classes: title-center title-h1h2
read_time: false
author_profile: false
share: false
comments: false
sidebar_first:
nav: "docs"
sticky: true
toc_sticky: true
# _recipes
- scope:
path: "_recipes"
type: recipes
values:
type: recipe
layout: single
classes: title-center title-h1h2
author_profile: true
share: true
comments: true
# _pets
- scope:
path: ""
type: pets
values:
type: pet
layout: single
classes: title-center title-h1h2
author_profile: true
share: true
comment: true
# _portfolio
- scope:
path: ""
type: portfolio
values:
type: portfolio
layout: single
classes: title-center title-h1h2
author_profile: false
share: true
# Publish posts or collection documents with a future date
future: true
# webserver_headers:
# # - - Access-Control-Allow-Origin
# # - "*"
# # - - Access-Control-Allow-Methods
# # - GET, OPTIONS, HEAD
# "Access-Control-Allow-Origin": "*"
# "Server": "CustomServerName"
# webrick:
# headers:
# Access-Control-Allow-Origin: "*"
# # Content-Security-Policy: default-src 'self' https://www.youtube-nocookie.com https://googleads.g.doubleclick.net/ googleads.g.doubleclick.net; script-src 'self' https://www.youtube-nocookie.com https://googleads.g.doubleclick.net/ https://googleads.g.doubleclick.net/pagead/id;
# # X-Content-Security-Policy" default-src 'self'; script-src 'self' https://fonts.googleapis.com https://ajax.googleapis.com; style-src 'self' https://fonts.googleapis.com; img-src 'self' ; font-src 'self' https://fonts.googleapis.com; connect-src 'self' https://ajax.googleapis.com; media-src 'self' ; object-src 'self' ; child-src 'self' ; frame-ancestors 'self' ; form-action 'none' ; sandbox allow-same-origin allow-scripts allow-pointer-lock;" />