diff options
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/_config.yml b/_config.yml index c0f2de8..d701bd6 100644 --- a/_config.yml +++ b/_config.yml @@ -21,7 +21,14 @@ timezone: Europe/Berlin markdown: kramdown # avoid deep nesting when using categories -permalink: /:year/:month/:title.html +# Thanks to https://github.com/jekyll/jekyll/issues/4145#issuecomment-158140960 +# We only want to modify posts, not pages! +defaults: + - + scope: + type: posts + values: + permalink: /:year/:month/:title.html theme: minima |