#!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals AUTHOR = u'bnewbold' SITENAME = u'bnewbold.net' SITEURL = u'http://bnewbold.net' DEFAULT_DATE = None OUTPUT_SOURCES = True DEFAULT_CATEGORY = '' OUTPUT_SOURCES_EXTENSION = '.raw' SLUGIFY_SOURCE = 'basename' DISPLAY_PAGES_ON_MENU = False DISPLAY_CATEGORIES_ON_MENU = False PATH = '.' STATIC_PATHS = ['static', '.well-known'] ARTICLE_PATHS = ['posts'] PAGE_PATHS = ['pages'] PLUGIN_PATHS = ['plugins'] EXTRA_PATH_METADATA = { #'well-known/keybase.txt': {'path': '.well-known/keybase.txt'}, } THEME = "theme" PLUGINS = ['sitemap', 'headerid'] SITEMAP = {'format': 'xml'} ARTICLE_URL = '{date:%Y}/{slug}/' ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html' PAGE_URL = '{slug}/' PAGE_SAVE_AS = '{slug}/index.html' YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html' MD_EXTENSIONS = ["codehilite(css_class=highlight)", "extra", "toc"] TIMEZONE = 'UTC' DEFAULT_LANG = u'en' # Feed generation is usually not desired when developing FEED_DOMAIN = SITEURL FEED_ALL_ATOM = 'feeds/all.atom.xml' CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml' FEED_ALL_RSS = 'feeds/all.rss.xml' CATEGORY_FEED_RSS = 'feeds/%s.rss.xml' # 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