diff --git a/projects/SEFM2020/pelicanconf.py b/projects/SEFM2020/pelicanconf.py new file mode 100644 index 0000000000000000000000000000000000000000..d98545c20c7553867b7deb848e66905db6f542b7 --- /dev/null +++ b/projects/SEFM2020/pelicanconf.py @@ -0,0 +1,51 @@ +#!/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 = (('', '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