-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
47 lines (38 loc) · 1.21 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
AUTHOR = 'Kale Miller'
SITENAME = 'blog.kalemiller.com'
SITEURL = 'https://blog.kalemiller.com'
PATH = 'content'
TIMEZONE = 'Australia/Sydney'
DEFAULT_LANG = 'en'
THEME = ".theme"
USE_FOLDER_AS_CATEGORY = True
OUTPUT_RETENTION = ["CNAME"]
# 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
# Theme-required config
LINKS = (
('LinkedIn', 'https://linkedin.com/in/kalelewismiller'),
('Twitter', 'https://twitter.com/KaleLewisMiller'),
('Github', 'https://github.com/kmiller96'),
)
SOCIAL = (
('linkedin', 'https://linkedin.com/in/kalelewismiller'),
('github', 'https://github.com/kmiller96'),
('twitter', 'https://twitter.com/KaleLewisMiller'),
)
SITEDESCRIPTION = "Musings on code, life, and everything else."
DISPLAY_SUMMARY = True
DISPLAY_PAGES_ON_MENU = True
DEFAULT_PAGINATION = 8
FAVICON = 'images/favicon.png'
STATIC_PATHS = ['images', 'extras']
EXTRA_PATH_METADATA = {
'extras/.htaccess': {'path': '.htaccess'},
'extras/robots.txt': {'path': 'robots.txt'},
}
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True