|
new file 100644
|
|
|
#!/usr/bin/env python
|
|
|
# -*- coding: utf-8 -*- #
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
AUTHOR = 'F.S. de Boer'
|
|
|
SITENAME = 'SEFM 2020'
|
|
|
SITEURL = ''
|
|
|
|
|
|
PATH = 'content'
|
|
|
|
|
|
STATIC_PATHS = ['images', 'static', 'extras', 'PDF']
|
|
|
|
|
|
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 = (('<img src="https://www.cwi.nl/logo.png" width="150px">', 'https://cwi.nl'),
|
|
|
('CWI Formal Methods Group', 'https://www.cwi.nl/research/groups/formal-methods'),
|
|
|
)
|
|
|
|
|
|
# #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
|