-
Notifications
You must be signed in to change notification settings - Fork 631
Expand file tree
/
Copy pathsettings.py
More file actions
24 lines (22 loc) · 766 Bytes
/
settings.py
File metadata and controls
24 lines (22 loc) · 766 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
# -*- coding: utf-8 -*-
AUTHOR = u'Matt Makai'
SITENAME = u'Full Stack Python'
SITEURL = 'https://www.fullstackpython.com'
TIMEZONE = 'America/New_York'
GITHUB_URL = 'https://github.com/mattmakai/fullstackpython.com'
PDF_GENERATOR = False
DIRECT_TEMPLATES = ('index', 'sitemap', 'table-of-contents', 'email',
'blog', 'example', 'all',) #'pdf-book', 'epub-book')
ARTICLE_SAVE_AS = 'blog/{slug}.html'
ARTICLE_URL = 'blog/{slug}.html'
SITEMAP_SAVE_AS = 'sitemap.xml'
FEED_RSS = 'feed'
LINKS = ()
MARKUP = ('rst', 'markdown',)
SOCIAL = (
('Email', 'mailto:matthew.makai@gmail.com'),
('GitHub', 'https://github.com/mattmakai'),
('Twitter', 'http://twitter.com/mattmakai'),
)
PROJECTS = ()
JINJA_EXTENSIONS = (['jinja2.ext.autoescape',])