manbytesgnu_site

Source files for manbytesgnu.org
git clone git://holbrook.no/manbytesgnu_site.git
Log | Files | Refs

pelicanconf.py (1067B)


      1 #!/usr/bin/env python
      2 # -*- coding: utf-8 -*- #
      3 
      4 AUTHOR = 'Louis Holbrook'
      5 SITENAME = 'man bytes gnu'
      6 SITEURL = ''
      7 
      8 PATH = 'content'
      9 
     10 TIMEZONE = 'Europe/Berlin'
     11 
     12 DEFAULT_LANG = 'en'
     13 
     14 # Feed generation is usually not desired when developing
     15 FEED_ALL_ATOM = None
     16 CATEGORY_FEED_ATOM = None
     17 TRANSLATION_FEED_ATOM = None
     18 AUTHOR_FEED_ATOM = None
     19 AUTHOR_FEED_RSS = None
     20 
     21 # Blogroll
     22 #LINKS = (('Pelican', 'https://getpelican.com/'),
     23 #         ('Python.org', 'https://www.python.org/'),
     24 #         ('Jinja2', 'https://palletsprojects.com/p/jinja/'),
     25 #         ('You can modify those links in your config file', '#'),)
     26 
     27 # Social widget
     28 #SOCIAL = (('You can add links in your config file', '#'),
     29 #          ('Another social link', '#'),)
     30 
     31 DEFAULT_PAGINATION = 10
     32 
     33 # Uncomment following line if you want document-relative URLs when developing
     34 RELATIVE_URLS = True
     35 
     36 DISPLAY_CATEGORIES_ON_MENU = True
     37 
     38 MENUITEMS = [('tags', '/tags.html')]
     39 
     40 STATIC_PATHS = ['images', 'misc']
     41 
     42 PLUGINS = [
     43         'pelican.plugins.neighbors',
     44         'sign',
     45         ]
     46 PLUGIN_SIGN_GPGKEY = 'd1d0e001'