-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
44 lines (32 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Pete Bunting'
SITENAME = 'Remote Sensing . Info'
SITEURL = 'http://remotesensing.info'
THEME = 'theme'
PATH = 'content'
TIMEZONE = 'Europe/London'
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
# Blogroll
LINKS = (('RSGISLib', 'http://www.rsgislib.org'),
('ARCSI', 'http://remotesensing.info/arcsi'),
('EODataDown', 'http://remotesensing.info/eodatadown'),
('KEALib', 'http://kealib.org'),
('SPDlib', 'http://www.spdlib.org'),
('pylidar', 'http://pylidar.org'),
('TuiView', 'http://tuiview.org'),)
# Social widget
SOCIAL = (('GitHub', 'https://github.com/petebunting'),
('YouTube', 'https://www.youtube.com/drpetebunting'),)
DEFAULT_PAGINATION = False
PLUGIN_PATHS=['./plugins']
PLUGINS = ['render_math']
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True