Mercurial > public > pelican-blog
comparison pelicanconf.py @ 13:bcfe2a2c8358
Take advantages of new pelican-bootstrap3 features.
Show date & tags on index.
Show twitter widget.
The Bootstrap readable theme was updated. I didn't like the new
version as much so I saved it as 'readable-bgn' in my pelican-bootstrap3
repo.
Added a setting PATH = 'content' to prevent weird errors when using
'fab regenerate', etc. Got this by googling.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 10 Feb 2014 20:03:21 -0600 |
parents | 5ff71680269a |
children | 4ed3f207aa65 |
comparison
equal
deleted
inserted
replaced
12:5ff71680269a | 13:bcfe2a2c8358 |
---|---|
3 from __future__ import unicode_literals | 3 from __future__ import unicode_literals |
4 | 4 |
5 AUTHOR = u'Brian Neal' | 5 AUTHOR = u'Brian Neal' |
6 SITENAME = u'Death of a Gremmie' | 6 SITENAME = u'Death of a Gremmie' |
7 SITEURL = '' | 7 SITEURL = '' |
8 | |
9 PATH = 'content' | |
8 | 10 |
9 TIMEZONE = 'US/Central' | 11 TIMEZONE = 'US/Central' |
10 | 12 |
11 DEFAULT_LANG = u'en' | 13 DEFAULT_LANG = u'en' |
12 | 14 |
68 DISQUS_NO_ID = True | 70 DISQUS_NO_ID = True |
69 | 71 |
70 ############################################################################### | 72 ############################################################################### |
71 | 73 |
72 THEME = '/home/brian/coding/python/venvs/blog/pelican-bootstrap3' | 74 THEME = '/home/brian/coding/python/venvs/blog/pelican-bootstrap3' |
73 BOOTSTRAP_THEME = 'readable' | 75 BOOTSTRAP_THEME = 'readable-bgn' |
74 BOOTSTRAP_NAVBAR_INVERSE = True | 76 BOOTSTRAP_NAVBAR_INVERSE = True |
75 FAVICON = 'extra/favicon.ico' | 77 FAVICON = 'extra/favicon.ico' |
76 DISPLAY_RECENT_POSTS_ON_SIDEBAR = True | 78 DISPLAY_RECENT_POSTS_ON_SIDEBAR = True |
77 RECENT_POST_COUNT = 10 | 79 RECENT_POST_COUNT = 10 |
78 CC_LICENSE = 'CC-BY' | 80 CC_LICENSE = 'CC-BY' |
81 | |
82 DISPLAY_ARTICLE_INFO_ON_INDEX = True | |
83 TWITTER_USERNAME = 'bgneal' | |
84 TWITTER_WIDGET_ID = '373250113528807425' |