You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
720 B
Python
39 lines
720 B
Python
4 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*- #
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
sys.path.append(os.curdir)
|
||
|
|
||
|
AUTHOR = 'LEdoian'
|
||
|
SITENAME = 'LEdoian'
|
||
|
SITEURL = ''
|
||
|
|
||
|
PATH = 'content'
|
||
|
THEME = 'test-theme'
|
||
|
|
||
|
TIMEZONE = 'Europe/Prague'
|
||
|
|
||
|
DEFAULT_LANG = 'en'
|
||
|
|
||
|
# Feed generation is usually not desired when developing
|
||
|
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
||
|
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
|
||
|
TRANSLATION_FEED_ATOM = None
|
||
|
AUTHOR_FEED_ATOM = None
|
||
|
AUTHOR_FEED_RSS = None
|
||
|
|
||
|
# Blogroll
|
||
|
LINKS = ()
|
||
|
|
||
|
# Social widget
|
||
|
SOCIAL = (('Mail', 'mailto:blog@pokemon.ledoian.cz'),
|
||
|
)
|
||
|
|
||
|
DEFAULT_PAGINATION = False
|
||
|
|
||
|
# Uncomment following line if you want document-relative URLs when developing
|
||
|
RELATIVE_URLS = True
|
||
|
|
||
|
DELETE_OUTPUT_DIRECTORY = True
|