diff -r 6ede33beeeed -r 871fcc94f63e pelicanconf.py --- a/pelicanconf.py Sat Mar 12 01:36:48 2016 +0100 +++ b/pelicanconf.py Sat Mar 12 01:39:27 2016 +0100 @@ -4,6 +4,8 @@ AUTHOR = u'David Douard' SITENAME = u'Whatever' +SITESUBTITLE = u"A blog, sort of" +TWITTER_USERNAME = u'douardda' SITEURL = 'https://whatever.sdfa3.org' PATH = 'content' @@ -23,13 +25,13 @@ # Blogroll LINKS = (('Pelican', 'http://getpelican.com/'), - ('Python.org', 'http://python.org/'), - ('Jinja2', 'http://jinja.pocoo.org/'), - ('You can modify those links in your config file', '#'),) + ('Logilab.org', 'https://www.logilab.org/'), + ('EEVBlog', 'https://www.eevblog.com/'), +) # Social widget -SOCIAL = (('You can add links in your config file', '#'), - ('Another social link', '#'),) +SOCIAL = (('twitter', 'https://twitter.com/douardda'), +) DEFAULT_PAGINATION = 10 @@ -41,3 +43,4 @@ PLUGIN_PATHS = ['pelican-plugins',] PLUGINS = ['better_figures_and_images',] RESPONSIVE_IMAGES = True +TYPOGRIPFY = True