Changeset - 350ed1aa7a6f
[Not reviewed]
0 1 0
Benjamin Lion - 6 years ago 2019-11-18 14:16:19
lion@brahms.fm.cwi.nl
Remove logo image from the links. Change the site url.
1 file changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
projects/SEFM2020/pelicanconf.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8 -*- #
 
from __future__ import unicode_literals
 

	
 
AUTHOR = 'Prof. dr. F.S. de Boer'
 
SITENAME = 'SEFM 2020'
 
SITEURL = ''
 
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'},
 
@@ -24,26 +24,25 @@ 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'),
 
LINKS =  (  ('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"
0 comments (0 inline, 0 general)