Sat, 20 Feb 2016 23:26:37 +0100
add pelican-plugins to .hgignore
0 | 1 | #!/usr/bin/env python |
2 | # -*- coding: utf-8 -*- # | |
3 | from __future__ import unicode_literals | |
4 | ||
5 | AUTHOR = u'David Douard' | |
6 | SITENAME = u'Whatever' | |
7 | SITEURL = '' | |
8 | ||
9 | PATH = 'content' | |
10 | ||
11 | TIMEZONE = 'Europe/Paris' | |
12 | ||
13 | DEFAULT_LANG = u'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 | |
24
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
36 | |
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
37 | STATIC_PATHS = ['images', 'pdfs'] |
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
38 | |
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
39 | PLUGIN_PATHS = ['pelican-plugins',] |
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
40 | PLUGINS = ['better_figures_and_images',] |
89689c6e9cf4
[hp8904a] add two blogs about the HP8904A and a small update of the about page
David Douard <david.douard@logilab.fr>
parents:
0
diff
changeset
|
41 | RESPONSIVE_IMAGES = True |