#!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals AUTHOR = u'hbsc' SITENAME = u'HOMEBREWSERVER.CLUB' SITEURL = 'https://homebrewserver.club' TIMEZONE = 'Europe/Paris' DEFAULT_LANG = u'en' # Feeds FEED_DOMAIN = SITEURL FEED_ALL_ATOM = 'feeds/all.atom.xml' FEED_ALL_RSS = 'feeds/all.rss.xml' CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' TRANSLATION_FEED_ATOM = None AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None DEFAULT_PAGINATION = False # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True PLUGIN_PATHS = ['./plugins'] PLUGINS = ['extract_toc', 'summary','representative_image','addressable_paragraphs'] # ,'pelican-open_graph'] #<-- cant get that one to work MARKDOWN = {'extensions': ['markdown.extensions.codehilite', 'markdown.extensions.extra', 'markdown.extensions.smarty', 'markdown.extensions.toc'], 'extension_configs': {'markdown.extensions.toc':{ 'title':'Table Of Contents'} } } PATH = '../raw' OUTPUT_PATH = '/var/www/html/' STATIC_PATHS = ['extra', 'fonts','images', 'pdfs', 'downloads'] EXTRA_PATH_METADATA = { 'extra/robots.txt': {'path': 'robots.txt'}, 'extra/favicon.ico': {'path': 'favicon.ico'}, 'extra/htaccess': {'path': '.htaccess'} } DISPLAY_PAGES_ON_MENU = False DISPLAY_CATEGORIES_ON_MENU = False MENUITEMS=( ('ABOUT', '/pages/about.html'), ('TOPICS', '/categories.html'), ('LINKS', '/pages/links.html') ) THEME = 'themes/homebrewserver.club' #RELATIVE_URLS = True