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