-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
68 lines (52 loc) · 1.73 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
62
63
64
65
66
67
68
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
from pathlib import Path
HOME = str(Path.home())
THEME = os.path.join(HOME, 'dev/blue-penguin')
# Theme optional settings (theme set to blue-penguin)
ARCHIVES_URL = 'archives'
ARCHIVES_SAVE_AS = 'archives/index.html'
ARTICLE_URL = '{slug}'
MENU_INTERNAL_PAGES = (
('Archives', ARCHIVES_URL, ARCHIVES_SAVE_AS),
)
AUTHOR = 'David Wilemski'
SITENAME = "David's Blog"
SITEURL = ''
DEFAULT_METADATA = {
'status': 'draft',
}
PATH = 'content'
TIMEZONE = 'America/Los_Angeles'
DEFAULT_LANG = 'en'
# 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
# Blogroll
LINKS = []
REL_ME_LINKS = "https://github.com/davidwilemski"
# Social widget
SOCIAL = (('Instagram', 'https://instagram.com/davidwilemski'),
('Strava', 'https://strava.com/athletes/dtw0'),
('Github', 'https://github.com/davidwilemski'),
('Twitter', 'https://twitter.com/davidwilemski'),)
SOCIAL = {
'me': [
('Instagram', 'https://instagram.com/davidwilemski'),
('Strava', 'https://strava.com/athletes/dtw0'),
('Github', 'https://github.com/davidwilemski'),
('Twitter', 'https://twitter.com/davidwilemski'),
],
'token_endpoint': "https://tokens.indieauth.com/token",
'authorization_endpoint': "https://indieauth.com/auth",
'authorization_endpoint': "https://indieauth.com/auth",
'micropub': "https://davidwilemski.com/micropub"
}
DEFAULT_PAGINATION = 1
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True