-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpelicanconf.py
More file actions
61 lines (43 loc) · 1.4 KB
/
pelicanconf.py
File metadata and controls
61 lines (43 loc) · 1.4 KB
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
from __future__ import unicode_literals
AUTHOR = 'junkyahd'
AUTHOREMAIL = 'UnestablishedOrder@proton.me'
SITENAME = u'Chaos Champion'
# SITEURL = 'https://chaoschampion.website'
SITEURL = 'http://localhost:8000'
PATH = 'content'
THEME = 'C:/Users/jboersma/pelican-themes/graymill'
TIMEZONE = 'America/New_York'
DEFAULT_LANG = u'en'
SITEDESCRIPTION = 'it is what it is'
DISPLAY_SUMMARY = False
DISPLAY_PAGES_ON_MENU = True
MENUITEMS = (('Home', SITEURL),
)
# Feed generation is usually not desired when developing
FEED_ALL_RSS = False
FEED_ALL_ATOM = False
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
FAVICON = 'static/images/icons/rss.png'
STATIC_PATHS = ['images']
EXTRA_PATH_METADATA = {
'extras/.htaccess': {'path': '.htaccess'},
'extras/robots.txt': {'path': 'robots.txt'},
}
# Blogroll
LINKS = (('Pelican', 'https://getpelican.com/'),
('Python.org', 'https://www.python.org/'),
('Jinja2', 'https://palletsprojects.com/p/jinja/'),
('You can modify those links in your config file', '#'),)
TWITTER_USERNAME = 'junkyahd'
# Social widget
SOCIAL = (
('github', 'https://github.com/junkyahd'),
('twitter', 'https://twitter.com/junkyahd'),
)
DEFAULT_PAGINATION = 8
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True