forked from gilmore-lab/gilmore-lab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
37 lines (27 loc) · 956 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = ''
SITENAME = 'Rick Gilmore\'s Lab Site'
SITEURL = 'http://gilmore-lab.github.io'
TIMEZONE = 'America/New_York'
DEFAULT_LANG = 'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
# Blogroll
LINKS = (('GitHub', 'http://github.com/gilmore-lab'),
('Psychology', 'http://psych.la.psu.edu'),
('Penn State', 'http://www.psu.edu'))
# Social widget
# SOCIAL = (('@rogilmore on Twitter', 'http://twitter.com/rogilmore'),
# ('@databrary on Twitter', 'http://twitter.com/databrary'))
DEFAULT_PAGINATION = 4
STATIC_PATHS = ['images', 'pdfs']
PAGE_PATHS = ['pages']
INDEX_SAVE_AS = 'blog_index.html'
OUTPUT_PATH = '/'
THEME = 'theme/tuxlite_tbs'
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True