-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsettings.py
47 lines (34 loc) · 1.16 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
AUTHOR = u'Python-Nantes'
SITENAME = u"Python-Nantes"
TAGLINE = u"Rencontres pythoniques et ligériennes"
SITEURL = 'http://nantes.afpy.org'
PATH = 'sources/'
OUTPUT_PATH = 'www/'
ARTICLE_PATHS = ['articles']
PAGE_PATHS = ['pages']
TIMEZONE = 'Europe/Paris'
PLUGIN_PATHS = ["pelican-plugins/", "pelican-plugins/pelican_youtube"]
PLUGINS = ['gravatar', 'pelican_youtube']
COVER_IMG_URL = '/images/sidebar.jpg'
#LINKS = (
# ('AFPY', 'http://www.afpy.org/'),
# ('Python', 'https://www.python.org/'),
# ('La Cantine', 'http://cantine.atlantic2.org/'),
#)
SOCIAL = (
('envelope', 'http://lists.afpy.org/listinfo/nantes'),
('user', 'http://www.meetup.com/Nantes-Python-Meetup/'),
('rss', '/feeds/all.atom.xml'),
('twitter', 'https://twitter.com/PythonNantes'),
('github', 'https://github.com/afpy/python-nantes'),
)
MENUITEMS = (
('A propos', '/pages/a-propos-de-python-nantes.html'),
('Archives', '/archives.html')
)
STATIC_PATHS = ['images', 'documents', 'extra/CNAME', 'presentations']
EXTRA_PATH_METADATA = {'extra/CNAME': {'path': 'CNAME'}}
DEFAULT_PAGINATION = 5
#GOOGLE_ANALYTICS = 'XXX'
#DISQUS_SITENAME = 'xxx'