Select Git revision
__init__.py
pelicanconf.py 1.17 KiB
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = 'SSEC RAIN Developers'
SITENAME = 'RAIN | SSEC @ UW-Madison'
SITEURL = ''
JS_CONF_VARS = {
'METOBS_API_URL': 'http://metobs-test.ssec.wisc.edu',
'QUICKLOOKS_FORMAT': 'new',
}
PATH = 'content'
OUTPUT_PATH = 'output'
THEME = 'themes/rain-theme'
STATIC_PATHS = ['images', 'css', 'js']
TIMEZONE = 'America/Chicago'
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
#ignore node modules
IGNORE_FILES = [
'node_modules',
'package.json',
'package-lock.json',
'webpack.config.js',
'.babelrc',
]
# 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', '#'),)
DEFAULT_PAGINATION = False
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True