You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.8 KiB
84 lines
2.8 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
from __future__ import unicode_literals
|
|
|
|
AUTHOR = 'Fabrice Mouhartem'
|
|
DESCRIPTION = 'Fabrice Mouhartem, PhD in Computer Science (Cryptology/Cryptography): Reseach, Teaching, Origami…'
|
|
THUMBNAIL = 'https://fmouhart.epheme.re/images/thumbnail.jpg'
|
|
SITENAME = 'Fabrice Mouhartem'
|
|
SITEURL = ''
|
|
|
|
PATH = 'content'
|
|
|
|
TIMEZONE = 'Europe/Paris'
|
|
LOCALE='en_GB.UTF-8'
|
|
|
|
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
|
|
|
|
# Theme & Plugins
|
|
PLUGIN_PATHS = ['./plugins/']
|
|
PLUGINS = ['pandoc_reader']
|
|
PANDOC_ARGS = [
|
|
'--mathjax',
|
|
]
|
|
THEME = 'theme'
|
|
|
|
#Themes customs
|
|
#TWITTER_URL = 'https://twitter.com/cryptomoumou'
|
|
#PIWIK_URL = 'epheme.re/stats/piwik'
|
|
#PIWIK_ID = '1'
|
|
|
|
#INDEX_SAVE_AS= 'blog_index.html'
|
|
DISPLAY_CATEGORIES_ON_MENU = True
|
|
CV_ON_MENU = True
|
|
CV_URL='/documents/resume.pdf'
|
|
CVITEMS = (('English', '/documents/resume.pdf'), ('Français', '/documents/cv.pdf'))
|
|
#MENUITEMS = (('Resume', '/documents/cv_english.pdf'), ('Teaching', '/category/teaching.html'),)
|
|
MENUITEMS = (('Teaching', '/category/teaching.html'),)
|
|
|
|
# Disable tags
|
|
TAGS_SAVE_AS = ''
|
|
TAG_SAVE_AS = ''
|
|
|
|
# Blogroll
|
|
#LINKS = (('Pelican', 'http://getpelican.com/'),
|
|
# ('Python.org', 'http://python.org/'),
|
|
# ('Jinja2', 'http://jinja.pocoo.org/'),
|
|
# ('You can modify those links in your config file', '#'),)
|
|
|
|
# Social widget
|
|
#SOCIAL = (('You can add links in your config file', '#'),
|
|
# ('Another social link', '#'),)
|
|
SOCIAL = (
|
|
# ('Aurore Alcolei', 'https://aalcolei.epheme.re/'),
|
|
('Simon Castellan', 'http://iso.mor.phis.me/'),
|
|
('Chitchanok Chuengsatiansup', 'https://cs.adelaide.edu.au/~cchuengs/'),
|
|
('Damien Desfontaines', 'https://desfontain.es/'),
|
|
('Tanguy Fardet', 'https://tfardet.srht.site/'),
|
|
('Armaël Guéneau', 'https://cambium.inria.fr/~agueneau/'),
|
|
('Valentin Gledel', 'https://perso.liris.cnrs.fr/vgledel/'),
|
|
('Jérémy Ledent', 'https://personal.cis.strath.ac.uk/jeremy.ledent/'),
|
|
('Tito Lê Thành Dũng Nguyễn', 'http://nguyentito.eu/'),
|
|
('Alain Passelègue', 'https://perso.ens-lyon.fr/alain.passelegue/'),
|
|
('Alice Pellet--Mary', 'https://apelletm.pages.math.cnrs.fr/page-perso/index.html'),
|
|
('François Pirot', 'https://www.lri.fr/~fpirot/'),
|
|
('Pierre Pradic', 'https://cs-web.swan.ac.uk/~pierrepradic/'),
|
|
# ('Baptiste Rozière', 'https://perso.ens-lyon.fr/baptiste.roziere/'),
|
|
('Ida Tucker', 'https://idatucker.github.io/'),
|
|
('Alexandre Wallet', 'https://awallet.github.io/'),
|
|
)
|
|
|
|
DEFAULT_PAGINATION = False
|
|
|
|
STATIC_PATHS = ['presentations', 'documents', 'images']
|
|
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
#RELATIVE_URLS = True
|