-
Notifications
You must be signed in to change notification settings - Fork 24
/
pelicanconf.py
90 lines (68 loc) · 2.31 KB
/
pelicanconf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
import yaml
LABNAME = 'Bicycle Laboratorium'
# TODO : Theme puts the author's name below the logo, should put sitename (i.e.
# it assumes this is a blog).
AUTHOR = LABNAME
SITENAME = LABNAME
SITEURL = ''
SOURCEURL = 'https://github.com/mechmotum/mechmotum.github.io'
PATH = 'content'
TIMEZONE = 'America/Los_Angeles'
DEFAULT_LANG = 'en'
# This sets the default pages to be top level items and articles to be under
# /blog/.
INDEX_SAVE_AS = 'blog/index.html'
# All blog posts will have slugs that match the file name.
PATH_METADATA = '(?P<path_no_ext>.*)\..*' # regex to grab file name without ext
ARTICLE_URL = 'blog/{path_no_ext}.html'
ARTICLE_SAVE_AS = 'blog/{path_no_ext}.html'
PAGE_URL = '{slug}.html'
PAGE_SAVE_AS = '{slug}.html'
PAGE_ORDER_BY = 'sortorder'
MENUITEMS = [('Blog', '/blog/')]
# 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
# Blogroll
LINKS = ()
# Social widget
SOCIAL = ()
DEFAULT_PAGINATION = False
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
try:
with open('config.yml', 'r') as config_file:
config_data = yaml.load(config_file, Loader=yaml.FullLoader)
except IOError:
THEME = ''
PLUGIN_PATHS = ['']
else:
THEME = config_data['THEME_PATH']
PLUGIN_PATHS = config_data['PLUGIN_PATHS']
if isinstance(PLUGIN_PATHS, type('')):
PLUGIN_PATHS = [PLUGIN_PATHS]
## THEME
# Alchemy theme settings
OS_SEP = os.sep
DISQUS_SITENAME = "mechmotum"
SITESUBTITLE = 'E pur si muove'
SITEIMAGE = 'https://objects-us-east-1.dream.io/mechmotum/bear-bicycle-transparent-480x480.png'
# INSTITUTEIMAGE should bee 100px in height
INSTITUTIONIMAGE = 'https://objects-us-east-1.dream.io/mechmotum/tu-delft-logo-233x100.png'
DESCRIPTION = ''
# pelican-alchemy removed the original theme.css, so bring it back.
THEME_CSS_OVERRIDES = ['theme/css/origtheme.css']
REPO_URL = 'https://github.com/mechmotum/mechmotum.github.io'
# TODO : Fix the template so that if this isn't declared it still builds.
EXCLUDED_CATEGORIES = []
#GOOGLE_ANALYTICS = ''
#DISQUS_SITENAME = ''
## PLUGINS
PLUGINS = ['render_math', 'extract_toc']