#!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals AUTHOR = u'Nimrod Adar' SITENAME = u'My notes and rumblings' SITEURL = 'https://www.shore.co.il/blog' TIMEZONE = 'Asia/Jerusalem' DEFAULT_LANG = u'en' # Feed generation is usually not desired when developing FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None TRANSLATION_FEED_ATOM = None # Blogroll LINKS = () # Social widget #SOCIAL = (('You can add links in your config file', '#'), # ('Another social link', '#'),) DEFAULT_PAGINATION = 3 # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True PATH = "content" DIRECT_TEMPLATES = ('index', 'archives') #DIRECT_TEMPLATES = ('index') #DISPLAY_CATEGORIES_ON_MENU = True DISPLAY_CATEGORIES_ON_MENU = False DISPLAY_PAGES_ON_MENU = True MENUITEMS = (('Code', 'https://www.shore.co.il/cgit/'),) THEME = "./pelican-mockingbird" TAGS_SAVE_AS = '' TAG_SAVE_AS = '' STATIC_PATHS = ['static'] ARTICLE_URL = '{slug}/'