-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpelicanconf.py
56 lines (40 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'PyLadies Poland'
SITENAME = u'pyladies-poland.github.io'
SITEURL = ''
PATH = 'content'
PAGE_PATHS = ['pages']
ARTICLE_PATHS = ['events', 'main', 'people', 'blog']
STATIC_PATHS = ['images']
ARTICLE_URL = '{category}/{slug}/'
ARTICLE_SAVE_AS = '{category}/{slug}/index.html'
DIRECT_TEMPLATES = ['archives', 'categories', 'events', 'index']
TIMEZONE = 'Europe/Warsaw'
DEFAULT_LANG = u'pl'
LOCALE = 'pl_PL'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Social widget
SOCIAL = (('facebook', 'https://www.facebook.com/pyladiespl'),
('twitter', 'https://twitter.com/pyladiespl'),
('github', 'https://github.com/pyladies-poland'),)
DEFAULT_PAGINATION = 6
PAGINATED_DIRECT_TEMPLATES = ['archives', 'categories', 'events']
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
# Set to True to enable caching
LOAD_CONTENT_CACHE = False
# Theme settings
THEME = 'themes/pyladiestheme'
THEME_STATIC_DIR = 'pyladiestheme'
DISPLAY_PAGES_ON_MENU = True
PLUGINS = ['plugins.articles_dict',
'plugins.categories_dict',]
# Set this to False in development mode
LOAD_CONTENT_CACHE = False