-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
51 lines (41 loc) · 1.37 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'atzorvas'
SITENAME = u"atzorvas' space"
SITEURL = 'http://tzorvas.com'
DISQUS_SITENAME = "tzorvas"
TWITTER_USERNAME = "atzorvas"
GITHUB_URL = "https://github.com/atzorvas/tzorvas.com"
#GOOGLE_ANALYTICS = "UA-40901002-1"
DEFAULT_PAGINATION = 5
TIMEZONE = 'Europe/Athens'
DEFAULT_LANG = u'en'
THEME = "theme"
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
#FEED_ALL_RSS = 'rss.xml'
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
# Blogroll
LINKS = (('ICSD', 'http://www.icsd.aegean.gr/'),
("OSArena.net", 'http://osarena.net'),)
# Social widget
SOCIAL = (('facebook', 'http://facebook.com/atzorvas'),
('twitter', 'http://twitter.com/atzorvas'),
('linkedin', 'http://gr.linkedin.com/in/atzorvas'),
('github', 'http://github.com/atzorvas'),)
MENUITEMS = (('archives', 'http://tzorvas.com/archives.html'),)
DISPLAY_CATEGORIES_ON_MENU = False
DISPLAY_PAGES_ON_MENU = True
PAGE_URL = "{slug}"
PAGE_SAVE_AS = "{slug}/index.html"
ARTICLE_URL = "{slug}"
ARTICLE_SAVE_AS = "{slug}/index.html"
DEFAULT_CATEGORY = "posts"
CATEGORY_URL = "{slug}"
CATEGORY_SAVE_AS = "{slug}/index.html"
#PDF_GENERATOR = True
#PDF_STYLE = "twelvepoint"
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True