blog/pelicanconf.py

43 lines
1.0 KiB
Python
Raw Normal View History

2020-12-28 00:11:51 +01:00
#!/usr/bin/env python
2021-01-02 16:49:08 +01:00
# -*- coding: utf-8 -*- #
2021-01-11 12:31:14 +01:00
from __future__ import unicode_literals
2020-12-28 00:11:51 +01:00
AUTHOR = 'Team'
SITENAME = 'blog.lediver.se'
SITEURL = ''
2021-01-11 12:31:14 +01:00
SITESUBTITLE = 'Der Blog des sozialen Netzwerks lediver.se'
2020-12-28 00:11:51 +01:00
PATH = 'content'
2021-01-11 12:31:14 +01:00
THEME = 'pelicanthemes/pelican-alchemy/alchemy'
2020-12-28 00:11:51 +01:00
TIMEZONE = 'Europe/Berlin'
2021-01-11 12:31:14 +01:00
SITEIMAGE = '/images/logo.png'
2021-01-11 16:29:33 +01:00
STATIC_PATHS = ('images', 'css')
2020-12-28 00:11:51 +01:00
DEFAULT_LANG = 'de'
2021-01-11 12:31:14 +01:00
LOCALE = ('de_DE.utf8', 'en_EN')
2020-12-28 00:11:51 +01:00
# 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
2021-01-11 12:31:14 +01:00
HIDE_AUTHORS = True
2020-12-28 00:11:51 +01:00
# Blogroll
2021-01-11 12:31:14 +01:00
LINKS = (('lediver.se', 'https://lediver.se/'),
('Team Account', 'https://lediver.se/web/accounts/1'),
)
2020-12-28 00:11:51 +01:00
# Social widget
2021-01-11 12:31:14 +01:00
#ICONS = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
2020-12-28 00:11:51 +01:00
DEFAULT_PAGINATION = 5
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
2021-01-11 16:29:33 +01:00
THEME_CSS_OVERRIDES = ('/css/style.css',)