Sat, 12 Mar 2016 01:36:16 +0100
[10MHz] small stylistic fix
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' | |
26 | 7 | SITEURL = 'https://whatever.sdfa3.org' |
0 | 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 | |
26 | 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 | FEED_RSS = 'feeds/rss.xml' | |
22 | FEED_ALL_RSS = 'feeds/all.rss.xml' | |
0 | 23 | |
24 | # Blogroll | |
25 | LINKS = (('Pelican', 'http://getpelican.com/'), | |
26 | ('Python.org', 'http://python.org/'), | |
27 | ('Jinja2', 'http://jinja.pocoo.org/'), | |
28 | ('You can modify those links in your config file', '#'),) | |
29 | ||
30 | # Social widget | |
31 | SOCIAL = (('You can add links in your config file', '#'), | |
32 | ('Another social link', '#'),) | |
33 | ||
34 | DEFAULT_PAGINATION = 10 | |
35 | ||
36 | # Uncomment following line if you want document-relative URLs when developing | |
37 | #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
|
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 | 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
|
40 | |
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 | 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
|
42 | 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
|
43 | RESPONSIVE_IMAGES = True |