forked from edtechgarden/edtechgarden.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
53 lines (37 loc) · 1.34 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
AUTHOR = u'Ian Sullivan'
SITENAME = u'edtechgarden'
SITEURL = ''
PATH = 'content'
OUTPUT_PATH = 'pelicanoutput'
TIMEZONE = 'America/New_York'
DEFAULT_LANG = u'en'
MENUITEMS = [('Help us build on github!','https://github.com/edtechgarden/edtechgarden.github.io')]
THEME = "themes/nest"
NEST_HEADER_LOGO = '/images/1by.png'
NEST_SITEMAP_MENU = [('Help us build on github!','https://github.com/edtechgarden/edtechgarden.github.io')]
GITHUB_URL = "https://github.com/edtechgarden/edtechgarden.github.io"
# This kills some of the default navigation pages since we are building our own
CATEGORY_SAVE_AS = ''
TAG_SAVE_AS = ''
INDEX_SAVE_AS = ''
ARTICLE_SAVE_AS = "{category}/{slug}.html"
PAGE_SAVE_AS = "{category}/{slug}.html"
DISPLAY_PAGES_ON_MENU = False
TYPOGRIFY = True
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
# Social widget
DEFAULT_PAGINATION = 10
## The following options are useful for build testing but can be dangerous
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = False
# Should you delete the contents of the output dir with each build?
DELETE_OUTPUT_DIRECTORY = False