diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-10-26 12:48:18 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-10-26 12:48:18 -0200 |
commit | 8f09a50e47eb2a6a0e666c8437774889c60e133c (patch) | |
tree | 10d17f6282ad7023eadaa77c15c7551e1bfb27ab /share/pelican/pelicanconf.py | |
download | templater-8f09a50e47eb2a6a0e666c8437774889c60e133c.tar.gz templater-8f09a50e47eb2a6a0e666c8437774889c60e133c.tar.bz2 |
Initial import
Diffstat (limited to 'share/pelican/pelicanconf.py')
-rw-r--r-- | share/pelican/pelicanconf.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/share/pelican/pelicanconf.py b/share/pelican/pelicanconf.py new file mode 100644 index 0000000..c5f6dd3 --- /dev/null +++ b/share/pelican/pelicanconf.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +AUTHOR = u'templates' +SITENAME = u'Templates' +SITEURL = '' + +PATH = 'content' + +TIMEZONE = 'America/Sao_Paulo' + +DEFAULT_LANG = u'pt' + +# 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 + +DEFAULT_PAGINATION = False + +RELATIVE_URLS = True + +SUMMARY_MAX_LENGTH = None |