-
Notifications
You must be signed in to change notification settings - Fork 1
/
pelicanconf.py
53 lines (40 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
from os.path import join as pjoin
AUTHOR = u'The Nipy developers'
SITENAME = u'The Nipy blog'
SITEURL = 'http://blog.nipy.org'
TIMEZONE = 'America/Los_Angeles'
DEFAULT_LANG = u'en'
# atom feeds
FEED_ATOM = 'feeds/english.atom.xml'
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
# RSS feeds
FEED_RSS = 'feeds/english.rss.xml'
FEED_ALL_RSS = 'feeds/all.rss.xml'
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Old nipy blog', 'http://nipyworld.blogspot.com'),
('Nipy', 'http://nipy.org/'))
# Social widget
# SOCIAL = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
SOCIAL = (())
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
# Change theme
THEME = pjoin('pelican-themes', 'fresh')
# Add downloads directory to static paths
STATIC_PATHS = ['images', 'download', 'CNAME']
# Syte stuff
ABOUT = u'Ash from the cigarette of working on NIPY'
SITE_DESCRIPTION = (u'About working on NIPY')
SITE_KEYWORDS = u'NIPY, Python, Imaging, Neuroimaging, FMRI'
GOOGLE_PLUSONE = True
CONTACT = u'nipy-devel@neuroimaging.scipy.com'
# Pages that should be served as links (all pages in contents/pages)
DISPLAY_PAGES_ON_MENU = True