forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book_settings.py
34 lines (26 loc) · 832 Bytes
/
book_settings.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
# -*- coding: utf-8 -*-
AUTHOR = u'Matthew 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 = ('pdf-book', 'epub-book')
PLUGINS = ['plugins.pelican-toc',]
ARTICLE_SAVE_AS = 'blog/{slug}.html'
SITEMAP_SAVE_AS = 'sitemap.xml'
FEED_DOMAIN = 'https://www.fullstackpython.com'
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
LINKS = ()
MARKUP = ('rst', 'markdown',)
SOCIAL = (
('Email', 'mailto:[email protected]'),
('GitHub', 'https://github.com/mattmakai'),
('Twitter', 'http://twitter.com/mattmakai'),
)
PROJECTS = ()
JINJA_EXTENSIONS = (['jinja2.ext.autoescape',])