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