diff options
author | David Runge <dave@sleepmap.de> | 2019-04-20 00:11:16 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-04-20 00:11:16 +0200 |
commit | 09221e5dad79e5c106384e7e8847b9f53848774b (patch) | |
tree | 3d3913901ae164d38eed96075e73fd8f3e0c570a | |
parent | daf73af79354bfe36d4532438aceacd2a866e362 (diff) | |
download | sleepmap-09221e5dad79e5c106384e7e8847b9f53848774b.tar.gz sleepmap-09221e5dad79e5c106384e7e8847b9f53848774b.tar.bz2 sleepmap-09221e5dad79e5c106384e7e8847b9f53848774b.tar.xz sleepmap-09221e5dad79e5c106384e7e8847b9f53848774b.zip |
conf.py: Making posts top-level ( directly below / ).
-rw-r--r-- | conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -255,10 +255,10 @@ THEME_CONFIG = { # ) POSTS = ( - ("posts/*.rst", "posts", "post.tmpl"), - ("posts/*.md", "posts", "post.tmpl"), - ("posts/*.txt", "posts", "post.tmpl"), - ("posts/*.html", "posts", "post.tmpl"), + ("posts/*.rst", "", "post.tmpl"), + ("posts/*.md", "", "post.tmpl"), + ("posts/*.txt", "", "post.tmpl"), + ("posts/*.html", "", "post.tmpl"), ) PAGES = ( ("pages/*.rst", "", "page.tmpl"), |