diff options
author | Vasudev Kamath <kamathvasudev@gmail.com> | 2014-03-01 12:20:54 +0530 |
---|---|---|
committer | Vasudev Kamath <kamathvasudev@gmail.com> | 2014-03-01 12:20:54 +0530 |
commit | 2ba251d46faa2c1277452c8d4df89dad2a8a7945 (patch) | |
tree | 111c5f429a89c125e88630baebacb5fe42ba28a1 /pelicanconf.py | |
parent | 5f31985c02ba093fa32522ae364d1a1f629b913f (diff) |
drop unneeded configurations from peliconf.py
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index d6ba052..aba24fa 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -15,6 +15,7 @@ DEFAULT_LANG = u'en' THEME = os.path.join(os.environ.get('HOME'), 'Public/konoha') + # Feed generation is usually not desired when developing FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None @@ -33,9 +34,6 @@ CC_LICENSE = "CC-BY-NC-SA" # Github info GITHUB_USER = "copyninja" -# code highlighting -PYGMENTS_STYLE = "solarizelight" - # Blogroll LINKS = (('Old Blog Archive', 'http://blog-archive.copyninja.info/'), ('Ohloh Profile', 'https://www.ohloh.net/accounts/copyninja'), @@ -51,6 +49,8 @@ SOCIAL = (('twitter', 'https://twitter.com/copyninja_'), # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True +STATIC_PATHS = ["images", ] + # URL generation ARTICLE_URL = 'blog/{slug}.html' ARTICLE_SAVE_AS = 'blog/{slug}.html' |