diff options
author | David Runge <dave@sleepmap.de> | 2015-08-04 01:15:27 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-08-04 01:15:27 +0200 |
commit | ed54caf1f4eba3562d0f64493fabc1753bd7d8e0 (patch) | |
tree | d7a7fbbc2a0fe9b8e96b50a355de490040f78bcc | |
parent | b8c188ec7a1c80697ea08f7608ed2e114de847e5 (diff) | |
download | sleepmap-ed54caf1f4eba3562d0f64493fabc1753bd7d8e0.tar.gz sleepmap-ed54caf1f4eba3562d0f64493fabc1753bd7d8e0.tar.bz2 sleepmap-ed54caf1f4eba3562d0f64493fabc1753bd7d8e0.tar.xz sleepmap-ed54caf1f4eba3562d0f64493fabc1753bd7d8e0.zip |
pelicanconf.py: Cleaning up MENUITEMS. Adding SITESUBTITLE. Adding Flattr link to SOCIAL. Cleaning up STATIC_PATHS.
-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 |