aboutsummaryrefslogtreecommitdiffstats
path: root/pelicanconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index a23d6c7..7e9332a 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -2,10 +2,16 @@
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
+
+
AUTHOR = 'David Runge'
+ARTICLE_PATHS = ['blog']
+ARTICLE_SAVE_AS = '{date:%Y}/{slug}.html'
+ARTICLE_URL = '{date:%Y}/{slug}.html'
SITENAME = 'Sleep Map'
SITEURL = 'http://sleepmap.de'
+
PATH = 'content'
TIMEZONE = 'Europe/Berlin'
@@ -37,4 +43,9 @@ THEME = 'sleepmap-theme'
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
-STATIC_PATHS = [ 'downloads' ]
+STATIC_PATHS = [ 'downloads', 'icons', 'images', 'music' ]
+
+USE_FOLDER_AS_CATEGORY = False
+
+PLUGIN_PATHS = ['../pelican/plugins/']
+PLUGINS = ['pelican-page-hierarchy']