diff options
-rw-r--r-- | pelicanconf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 6457fff..e215509 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -30,9 +30,7 @@ LINKS = ( ('Tibet Motorcycle Adventures', 'http://tibetmoto.de'), ) LOAD_CONTENT_CACHE = False -MENUITEMS = ( - -) +MENUITEMS = () PATH = 'content' PATH_METADATA = 'pages/(?P<path>.*)\..*' # Make pages top-level (remove /pages/ from each URL) # Plugins @@ -41,13 +39,15 @@ PLUGINS = [ 'i18n_subsites', 'pelican-page-hierarchy'] # Uncomment following line if you want document-relative URLs when developing RELATIVE_URLS = True SITENAME = 'Sleep Map' +SITESUBTITLE = "Live - Create - Sleep (a map through existence)" SITEURL = 'http://sleepmap.de' # Social widget SOCIAL = ( ('Twitter', 'https://twitter.com/dvzrv'), ('Github', 'https://github.com/dvzrv'), + ('Flattr', 'https://flattr.com/profile/davezerave'), ) -STATIC_PATHS = [ 'downloads', 'icons', 'images', 'music' ] +STATIC_PATHS = [ 'icons', 'images', 'cert' ] THEME = 'sleepmap-theme' TIMEZONE = 'Europe/Berlin' TRANSLATION_FEED_ATOM = None |