forked from david-guenault/shinkenlab.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
61 lines (43 loc) · 1.47 KB
/
pelicanconf.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'Shinken framework team'
SITENAME = u'Some monitoring guys'
SITEURL = ''
GOOGLE_ANALYTICS_CODE = 'UA-48477803-1'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = u'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
# Blogroll
LINKS = (('shinken project', 'http://www.shinken-monitoring.org/'),
('shinken.io', 'http://shinken.io/'),
('shinken solutions', 'http://www.shinken-solutions.com/'),
)
# Social widget
SOCIAL = (('community tweets', 'https://twitter.com/shinken_monitor'),
('shinken.io news', 'https://twitter.com/Shinkenio'),
('Enterprise news', 'https://twitter.com/ShinkenInc'),
)
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
#THEME = "theme/ohwait"
THEME = "theme/lannisport"
DEFAULT_DATE_FORMAT = '%b %d, %Y'
ARTICLE_URL = '{slug}/'
ARTICLE_SAVE_AS = '{slug}/index.html'
PAGE_URL = '{slug}/index.html'
PAGE_SAVE_AS = '{slug}/index.html'
CATEGORY_SAVE_AS = False
CATEGORIES_SAVE_AS = False
PAGE_LANG_SAVE_AS = False
TAGS_SAVE_AS = False
AUTHOR_SAVE_AS = False
AUTHORS_SAVE_AS = False
ARCHIVES_SAVE_AS = False
MD_EXTENSIONS = ['codehilite(css_class=highlight)']
GITHUB_URL = 'https://github.com/naparuba/shinken'
TWITTER_URL = 'https://twitter.com/shinken_monitor'