-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
43 lines (31 loc) · 1000 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
AUTHOR = u'NegativeDearc'
SITENAME = u'Home of Kukumalu'
SITEURL = ''
SITESUBTITLE = "seeking for inner peace"
PATH = 'content'
TIMEZONE = 'Asia/Shanghai'
DEFAULT_LANG = u'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 = ((u'香阁公主', 'http://www.cxwloves.cc/'),
(u"酷酷马鹿", "http://www.kukumalu.cc"),)
# Social widget
SOCIAL = (('E-Mail', 'mailto:[email protected]'),)
DEFAULT_PAGINATION = 5
# Archive
ARCHIVES_SAVE_AS = 'archives.html'
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True
# Theme path, will affect any css/js files related with the theme
THEME = os.path.join(os.path.dirname(__file__), "themes", "aboutwilson")
# Static path
STATIC_PATHS = ["images"]