# -*- 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/explore/"),) 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 = "C.UTF-8"