diff options
author | David Runge <dave@sleepmap.de> | 2016-04-15 10:04:40 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-04-15 10:04:40 +0200 |
commit | 435cbbee075c17b1b0b6f04eda9412ae16398f57 (patch) | |
tree | c72b1bb0581fae8420e46568ce07476eff59b2e9 | |
parent | 6d63dd66f1400fe5dc7f20097008111eda43a49a (diff) | |
download | sleepmap-435cbbee075c17b1b0b6f04eda9412ae16398f57.tar.gz sleepmap-435cbbee075c17b1b0b6f04eda9412ae16398f57.tar.bz2 sleepmap-435cbbee075c17b1b0b6f04eda9412ae16398f57.tar.xz sleepmap-435cbbee075c17b1b0b6f04eda9412ae16398f57.zip |
pelicanconf.py: Now saving articles in separate subfolder each with an index.html (to be able to omit the latter).
-rw-r--r-- | pelicanconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 61915cd..cd4ded2 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals ARTICLE_PATHS = ['blog'] -ARTICLE_SAVE_AS = '{date:%Y}/{slug}.html' +ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html' ARTICLE_URL = '{date:%Y}/{slug}/' AUTHOR = 'David Runge' AUTHOR_FEED_ATOM = None |