-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
_config.yml
executable file
·154 lines (135 loc) · 3.75 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
site: Buster's Notes
url: https://busterbenson.com
title: Buster's Notes
description: Notes
permalink: pretty
strict_front_matter: true
liquid:
error_mode: strict
baseurl: ""
highlighter: none
exclude:
- '.jekyll-cache'
- 'Gemfile'
- 'Gemfile.lock'
compress_html:
clippings: all
comments: ["<!-- ", " -->"]
sass:
sass_dir: _sass
style: :compressed
kramdown:
html_to_native: true
target-blank:
add_css_classes: external-link
plugins:
- rmagick
- jekyll-paginate
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-target-blank
- jekyll-twitter-plugin
- jekyll-youtube
- jekyll-email-protect
- jekyll-redirect-from
- jekyll-dotenv
- jekyll-responsive-image
responsive_image:
template: _includes/img.html
# [Optional, Default: 85]
# Quality to use when resizing images.
default_quality: 90
# [Optional, Default: []]
# An array of resize configuration objects. Each object must contain at least
# a `width` value.
sizes:
- width: 480 # [Required] How wide the resized image will be.
quality: 80 # [Optional] Overrides default_quality for this size.
- width: 800
- width: 1400
quality: 90
# [Optional, Default: false]
# Rotate resized images depending on their EXIF rotation attribute. Useful for
# working with JPGs directly from digital cameras and smartphones
auto_rotate: false
# [Optional, Default: assets]
# The base directory where assets are stored. This is used to determine the
# `dirname` value in `output_path_format` below.
base_path: assets/images
# [Optional, Default: assets/resized/%{filename}-%{width}x%{height}.%{extension}]
# The template used when generating filenames for resized images. Must be a
# relative path.
#
# Parameters available are:
# %{dirname} Directory of the file relative to `base_path` (assets/sub/dir/some-file.jpg => sub/dir)
# %{basename} Basename of the file (assets/some-file.jpg => some-file.jpg)
# %{filename} Basename without the extension (assets/some-file.jpg => some-file)
# %{extension} Extension of the file (assets/some-file.jpg => jpg)
# %{width} Width of the resized image
# %{height} Height of the resized image
#
output_path_format: assets/images/resized/%{width}/%{basename}
# [Optional, Default: true]
# Whether or not to save the generated assets into the source folder.
save_to_source: false
# [Optional, Default: false]
# Cache the result of {% responsive_image %} and {% responsive_image_block %}
# tags. See the "Caching" section of the README for more information.
cache: false
#/ [Optional, Default: []]
# By default, only images referenced by the responsive_image and responsive_image_block
# tags are resized. Here you can set a list of paths or path globs to resize other
# images. This is useful for resizing images which will be referenced from stylesheets.
extra_images:
- assets/foo/bar.png
- assets/bgs/*.png
- assets/avatars/*.{jpeg,jpg}
collections:
pages:
output: true
permalink: /:name
posts:
output: true
permalink: /:year/:month/:day/:slug
mood:
output: true
permalink: /mood/:name
tarot:
output: true
permalink: /tarot/:name
symbol:
output: true
permalink: /symbol/:symbol
8bit:
output: true
permalink: /8bit/:name
defaults:
- scope:
path: ""
values:
layout: "default"
- scope:
path: ""
type: "pages"
values:
layout: "page"
- scope:
path: ""
type: "posts"
values:
layout: "post"
- scope:
path: ""
type: "pages"
values:
layout: "mood"
- scope:
path: ""
type: "pages"
values:
layout: "tarot"
- scope:
path: ""
type: "pages"
values:
layout: "8bit"