-
Notifications
You must be signed in to change notification settings - Fork 1
/
pelicanconf.py
42 lines (30 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Florian Bruhin'
SITENAME = 'qutebrowser development blog'
SITEURL = ''
PATH = 'content'
STATIC_PATHS = ['images']
PLUGIN_PATHS = ['pelican-plugins']
PLUGINS = ['thumbnailer', 'filetime_from_git']
IMAGE_PATH = 'images'
THUMBNAIL_DIR = 'images'
THUMBNAIL_SIZES = {'small': '200x?'}
THEME = './pelican-themes/monospace'
DESCRIPTION = ('qutebrowser development blog<br/><br/>'
'<a href="http://www.qutebrowser.org/">website</a><br/>'
'<a href="https://github.com/qutebrowser/qutebrowser">GitHub'
'</a><br/>feeds: <a href="feeds/all.atom.xml">atom</a> / '
'<a href="feeds/all.rss.xml">rss</a>')
SITEURL = 'https://blog.qutebrowser.org'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'en'
# Blogroll
LINKS = ()
# Social widget
SOCIAL = ()
DEFAULT_PAGINATION = 10
DEFAULT_CATEGORY = ''
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True