Skip to content
Snippets Groups Projects
Select Git revision
  • f65306f8668ebab5d3e309f6df3b0c04ce3a7683
  • master default protected
  • use_flight_altitude
  • distribute
4 results

__init__.py

Blame
  • 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