]> git.friedersdorff.com Git - max/notes.git/blob - pelicanconf.py
Initial commit for pelican blog
[max/notes.git] / pelicanconf.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
4
5 AUTHOR = 'Maximilian Friedersdorff'
6 SITENAME = 'notes'
7 SITEURL = ''
8
9 PATH = 'content'
10
11 TIMEZONE = 'Europe/London'
12
13 DEFAULT_LANG = 'en'
14
15 # Feed generation is usually not desired when developing
16 FEED_ALL_ATOM = None
17 CATEGORY_FEED_ATOM = None
18 TRANSLATION_FEED_ATOM = None
19 AUTHOR_FEED_ATOM = None
20 AUTHOR_FEED_RSS = None
21
22 # Blogroll
23 LINKS = (('Pelican', 'http://getpelican.com/'),
24          ('Python.org', 'http://python.org/'),
25          ('Jinja2', 'http://jinja.pocoo.org/'),
26          ('You can modify those links in your config file', '#'),)
27
28 # Social widget
29 SOCIAL = (('You can add links in your config file', '#'),
30           ('Another social link', '#'),)
31
32 DEFAULT_PAGINATION = 10
33
34 # Uncomment following line if you want document-relative URLs when developing
35 #RELATIVE_URLS = True