Sat, 12 Mar 2016 17:36:14 +0100
[why] add few metadata
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' | |
34
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
7 | SITESUBTITLE = u"A blog, sort of" |
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
8 | TWITTER_USERNAME = u'douardda' |
26 | 9 | SITEURL = 'https://whatever.sdfa3.org' |
0 | 10 | |
11 | PATH = 'content' | |
12 | ||
13 | TIMEZONE = 'Europe/Paris' | |
14 | ||
15 | DEFAULT_LANG = u'en' | |
16 | ||
17 | # Feed generation is usually not desired when developing | |
26 | 18 | #FEED_ALL_ATOM = None |
19 | #CATEGORY_FEED_ATOM = None | |
20 | #TRANSLATION_FEED_ATOM = None | |
21 | #AUTHOR_FEED_ATOM = None | |
22 | #AUTHOR_FEED_RSS = None | |
23 | FEED_RSS = 'feeds/rss.xml' | |
24 | FEED_ALL_RSS = 'feeds/all.rss.xml' | |
0 | 25 | |
26 | # Blogroll | |
27 | LINKS = (('Pelican', 'http://getpelican.com/'), | |
34
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
28 | ('Logilab.org', 'https://www.logilab.org/'), |
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
29 | ('EEVBlog', 'https://www.eevblog.com/'), |
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
30 | ) |
0 | 31 | |
32 | # Social widget | |
34
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
33 | SOCIAL = (('twitter', 'https://twitter.com/douardda'), |
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
34 | ) |
0 | 35 | |
36 | DEFAULT_PAGINATION = 10 | |
37 | ||
38 | # Uncomment following line if you want document-relative URLs when developing | |
39 | #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
|
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 | 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
|
42 | |
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 | 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
|
44 | 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
|
45 | RESPONSIVE_IMAGES = True |
34
871fcc94f63e
[config] add twitter stuff an links to eevblog and elo
David Douard <david.douard@logilab.fr>
parents:
26
diff
changeset
|
46 | TYPOGRIPFY = True |