diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2015-03-19 22:42:40 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2015-03-19 22:42:40 +0100 |
commit | e90c342c6b3487840f0b7067fd2ed04678d00db3 (patch) | |
tree | b27c61028e350e85170b5a3b13cf77188c24da4e /pelicanconf.py | |
parent | 0ad73de1d89956739738716f2d32652ca83164b5 (diff) |
Do not load disqus comment automaticaly
Diffstat (limited to 'pelicanconf.py')
-rwxr-xr-x | pelicanconf.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 09b4d78..a6da2bf 100755 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -33,8 +33,6 @@ ARTICLE_SAVE_AS = u'{date:%Y}/{date:%m}/{slug}/index.html' STATIC_SAVE_AS=u'{path}' -STATIC_PATHS = ['images', 'resources'] - THEME = 'theme' TYPOGRIFY = False TEMPLATE_PAGES = {'../extras/404.html': '404.html'} @@ -54,7 +52,6 @@ EXTRA_PATH_METADATA = { PLUGIN_PATHS = ['plugins'] -#from pelican.plugins import related_posts PLUGINS = ['related_posts', 'typogrify'] SUMMARY_MAX_LENGTH=100 @@ -64,12 +61,3 @@ DOCUTILS_SETTINGS={ 'strip_comments': 'True' } -import sys -import os.path -try: - sys.path.append(os.path.dirname(os.path.abspath(__file__))) - from disqus import * - PLUGINS.append("disqus_static") -except: - pass - |