Update pelican configs

This commit is contained in:
Raymond Wanyoike 2016-11-30 22:00:29 +03:00
commit 8906d36310
2 changed files with 4 additions and 5 deletions

View file

@ -41,11 +41,9 @@ LINKS = (
('Jinja2', 'http://jinja.pocoo.org/'), ('Jinja2', 'http://jinja.pocoo.org/'),
) )
ICONS = ( ICONS = [
# Note feed has it's domain hard-coded (cheap workaround)
('feed', 'https://rwanyoike.github.io/pelican-alchemy/feeds/all.atom.xml'),
('github', 'https://github.com/rwanyoike/pelican-alchemy'), ('github', 'https://github.com/rwanyoike/pelican-alchemy'),
) ]
# Default value is ['index', 'tags', 'categories', 'authors', 'archives'] # Default value is ['index', 'tags', 'categories', 'authors', 'archives']
DIRECT_TEMPLATES = ['index', 'tags', 'categories', 'authors', 'archives', 'sitemap'] DIRECT_TEMPLATES = ['index', 'tags', 'categories', 'authors', 'archives', 'sitemap']

View file

@ -20,6 +20,7 @@ CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
DELETE_OUTPUT_DIRECTORY = True DELETE_OUTPUT_DIRECTORY = True
# Following items are often useful when publishing # Following items are often useful when publishing
# DISQUS_SITENAME = "" # DISQUS_SITENAME = ""
# GOOGLE_ANALYTICS = "" # GOOGLE_ANALYTICS = ""
ICONS.insert(0, ('feed', SITEURL + '/' + FEED_ALL_ATOM))