comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:c4ec6945bb86
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
4
5 AUTHOR = u'Brian Neal'
6 SITENAME = u'Death of a Gremmie'
7 SITEURL = ''
8
9 TIMEZONE = 'Europe/Paris'
10
11 DEFAULT_LANG = u'en'
12
13 # Feed generation is usually not desired when developing
14 FEED_ALL_ATOM = None
15 CATEGORY_FEED_ATOM = None
16 TRANSLATION_FEED_ATOM = None
17
18 # Blogroll
19 LINKS = (('Pelican', 'http://getpelican.com/'),
20 ('Python.org', 'http://python.org/'),
21 ('Jinja2', 'http://jinja.pocoo.org/'),
22 ('You can modify those links in your config file', '#'),)
23
24 # Social widget
25 SOCIAL = (('You can add links in your config file', '#'),
26 ('Another social link', '#'),)
27
28 DEFAULT_PAGINATION = 10
29
30 # Uncomment following line if you want document-relative URLs when developing
31 #RELATIVE_URLS = True