-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpelicanconf.py
More file actions
40 lines (28 loc) · 964 Bytes
/
pelicanconf.py
File metadata and controls
40 lines (28 loc) · 964 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'thikcube'
SITENAME = u'thinkCube: Play'
SITEURL = 'http://play.thinkcube.com'
PAGE_DIR = 'content/pages'
THEME = 'pelican-themes/tuxlite_tbs'
PATH = 'content'
TIMEZONE = 'Asia/Colombo'
DEFAULT_LANG = u'en'
# Feed generation is usually not desired when developing
FEED_RSS = 'rss.xml'
# Blogroll
# LINKS = (('thinkCube', 'http://thinkcube.com/'),)
# Social widget
SOCIAL = (('Twitter', 'http://twitter.com/thinkcube'),
('Github', 'https://github.com/thinkcube'),)
MENUITEMS = (('go to thinkcube.com', 'http://thinkcube.com'),)
DEFAULT_PAGINATION = 10
# Google Analytics
GOOGLE_ANALYTICS = 'UA-46141530-5'
STATIC_PATHS = ['images', 'content/extras/robots.txt']
EXTRA_PATH_METADATA = {
'content/extras/robots.txt': {'path': 'robots.txt'},
}
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True