Skip to content
Snippets Groups Projects
Select Git revision
  • c543009ed28017bdd392e5007c656fb565ec32f4
  • master default
  • host01
  • ns4
  • kodi
5 results

docker-compose.yml

Blame
  • pelicanconf.py 975 B
    # -*- coding: utf-8 -*- #
    from __future__ import unicode_literals
    
    AUTHOR = 'Nimrod Adar'
    SITENAME = 'My notes and ramblings'
    SITEURL = 'http://localhost:8080'
    
    PATH = 'content'
    
    TIMEZONE = 'Asia/Jerusalem'
    
    DEFAULT_LANG = 'en'
    
    # Feed generation is usually not desired when developing
    FEED_ALL_ATOM = 'feeds/all.atom.xml'
    CATEGORY_FEED_ATOM = None
    TRANSLATION_FEED_ATOM = None
    AUTHOR_FEED_ATOM = None
    AUTHOR_FEED_RSS = None
    
    # Blogroll
    LINKS = ()
    
    DEFAULT_PAGINATION = 3
    
    # Uncomment following line if you want document-relative URLs when developing
    RELATIVE_URLS = True
    DIRECT_TEMPLATES = ('index', 'archives')
    DISPLAY_CATEGORIES_ON_MENU = False
    DISPLAY_PAGES_ON_MENU = True
    MENUITEMS = (('Code', 'https://git.shore.co.il/nimrod'),)
    THEME = "./pelican-mockingbird"
    TAGS_SAVE_AS = ''
    TAG_SAVE_AS = ''
    STATIC_PATHS = ['static']
    ARTICLE_URL = '{slug}/'
    DELETE_OUTPUT_DIRECTORY = True
    
    SLUGIFY_SOURCE = 'basename'
    ARTICLE_SAVE_AS = '{slug}/index.html'
    
    LOCALE = ('en_US.utf8')