#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = ''
SITENAME = 'SEFM 2020'
#SITEURL = 'sefm2020'
PATH = 'content'
STATIC_PATHS = ['images', 'static', 'extras', 'PDF']
WORKSHOP_PATHS = ['workshops']
WORKSHOP_SAVE_AS = '{date:%Y}/{slug}.html'
WORKSHOP_URL = '{date:%Y}/{slug}.html'
EXTRA_PATH_METADATA = {
'extras/favicon.ico': {'path': 'favicon.ico'},
'extras/custom.css': {'path': 'static/css/custom.css'},
}
TIMEZONE = 'Europe/Amsterdam'
DEFAULT_LANG = '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
DISPLAY_TAGS_ON_SIDEBAR = False
# Resources
LINKS = ( ('CWI Computer Security Group', 'https://www.cwi.nl/research/groups/computer-security'),
)
# #Social widget
# SOCIAL = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
THEME = "bootstrap3"
CUSTOM_CSS = 'static/css/custom.css'
PLUGIN_PATHS = ["plugins"]
PLUGINS = ["tag_cloud"]
# finis