-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
_config.yml
36 lines (29 loc) · 940 Bytes
/
_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
permalink: /en/:year-:month-:day-:title
# show future post, posts might be confusingly hidden through different timezones otherwise
future: true
# the following lines are to make the option {{ page.is_post }} available, thanks to
# https://stackoverflow.com/questions/18675610/jekyll-change-layout-if-page-is-a-post
defaults:
-
scope:
path: "" # empty string for all files
values:
layout: default
-
scope:
path: "" # empty string for all files
type: posts # limit to posts
values:
is_post: true # automatically set is_post=true for all posts
lang: en
kramdown:
auto_ids: true # auto-generate ID's for headings
sass:
style: compressed
# add plugins
plugins:
- jekyll-sitemap
# include .well-known for flathub verification
include: [".well-known"]
# the tools directory contains cached files downloaded from transifex, ignore it
exclude: ["tools", "venv"]