1
0
Fork 0
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.
blog/pelicanconf.py

39 lines
667 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*- #
import os
import sys
sys.path.append(os.curdir)
AUTHOR = 'LEdoian'
SITENAME = 'LEdoian'
SITEURL = 'https://blog.ledoian.cz/'
RELATIVE_URLS = True
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
DELETE_OUTPUT_DIRECTORY = True