diff options
author | David Robillard <d@drobilla.net> | 2019-02-03 17:48:09 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-02-03 17:48:17 +0100 |
commit | 5d57405c84d8f95eacf96672e3d05a691999e7c3 (patch) | |
tree | de87c728abbee75408deb46fe510be480fc3abbe | |
parent | 10c694c3d6dcfb38073d5abd96e0e8231a540fa9 (diff) | |
download | lv2site-5d57405c84d8f95eacf96672e3d05a691999e7c3.tar.xz |
Fix site generation
-rw-r--r-- | pelicanconf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 46f7066..7b9189a 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -14,6 +14,8 @@ PATH = 'content' TIMEZONE = 'America/Toronto' DEFAULT_LANG = u'en' +ARTICLE_TRANSLATION_ID = None +PAGE_TRANSLATION_ID = None THEME = 'themes/lv2' @@ -23,6 +25,8 @@ FAVICON = 'images/favicon.png' FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None # Blogroll #LINKS = (('Pelican', 'http://getpelican.com/'), @@ -56,7 +60,6 @@ DISPLAY_SERIES_ON_SIDEBAR = False DISPLAY_CATEGORIES_ON_SIDEBAR = False PLUGIN_PATHS = ["extra_plugins"] -PLUGIN_PATH = "extra_plugins" PLUGINS = ["gallery"] GALLERY_FOLDER = "galleries" |