diff options
-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" |