-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpelicanconf.py
69 lines (56 loc) · 1.33 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
69
from datetime import datetime
AUTHOR = 'FoFiX team'
SITENAME = 'Frets On Fire X'
SITETITLE = 'Frets On Fire X'
SITESUBTITLE = ''
SITEURL = 'http://localhost:8000'
SITELOGO = '/images/fofix_logo.png'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'en'
PATH = 'content'
# 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
# Main page
MAIN_MENU = True
DISPLAY_PAGES_ON_MENU = True
MENUITEMS = (
("Blog", "/blog.html"),
("Archives", "/archives.html"),
("Categories", "/categories.html"),
("Tags", "/tags.html"),
)
INDEX_URL = "blog"
INDEX_SAVE_AS = "blog.html"
# pages
PAGE_URL = "pages/{slug}.html"
PAGE_SAVE_AS = "pages/{slug}.html"
# articles
ARTICLE_PATHS = ['blog']
ARTICLE_URL = "blog/{slug}.html"
ARTICLE_SAVE_AS = "blog/{slug}.html"
# static
STATIC_PATHS = ['images']
# Blogroll
LINKS = (
("Blog", "/blog.html"),
)
# Social widget
SOCIAL = (
('github', 'https://github.com/fofix'),
('comments', 'https://matrix.to/#/#fofix:matrix.org'),
)
DEFAULT_PAGINATION = 10
COPYRIGHT_YEAR = datetime.now().year
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
# Theme
THEME = "themes/Flex"
# Plugins
PLUGIN_PATHS = ["plugins"]
PLUGINS = [
'post_stats',
]