annotate pelicanconf.py @ 0:c4ec6945bb86

Just ran pelican-quickstart and answered some questions. Created .hgignore file.
author Brian Neal <bgneal@gmail.com>
date Wed, 29 Jan 2014 18:53:45 -0600
parents
children 64edb34396b6
rev   line source
bgneal@0 1 #!/usr/bin/env python
bgneal@0 2 # -*- coding: utf-8 -*- #
bgneal@0 3 from __future__ import unicode_literals
bgneal@0 4
bgneal@0 5 AUTHOR = u'Brian Neal'
bgneal@0 6 SITENAME = u'Death of a Gremmie'
bgneal@0 7 SITEURL = ''
bgneal@0 8
bgneal@0 9 TIMEZONE = 'Europe/Paris'
bgneal@0 10
bgneal@0 11 DEFAULT_LANG = u'en'
bgneal@0 12
bgneal@0 13 # Feed generation is usually not desired when developing
bgneal@0 14 FEED_ALL_ATOM = None
bgneal@0 15 CATEGORY_FEED_ATOM = None
bgneal@0 16 TRANSLATION_FEED_ATOM = None
bgneal@0 17
bgneal@0 18 # Blogroll
bgneal@0 19 LINKS = (('Pelican', 'http://getpelican.com/'),
bgneal@0 20 ('Python.org', 'http://python.org/'),
bgneal@0 21 ('Jinja2', 'http://jinja.pocoo.org/'),
bgneal@0 22 ('You can modify those links in your config file', '#'),)
bgneal@0 23
bgneal@0 24 # Social widget
bgneal@0 25 SOCIAL = (('You can add links in your config file', '#'),
bgneal@0 26 ('Another social link', '#'),)
bgneal@0 27
bgneal@0 28 DEFAULT_PAGINATION = 10
bgneal@0 29
bgneal@0 30 # Uncomment following line if you want document-relative URLs when developing
bgneal@0 31 #RELATIVE_URLS = True