Created
October 4, 2017 17:14
-
-
Save zimmicz/d477c2b6df1a0cb96accc267bc61ef6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- # | |
from __future__ import unicode_literals | |
# This file is only used if you use `make publish` or | |
# explicitly specify it as your config file. | |
import os | |
import sys | |
sys.path.append(os.curdir) | |
from pelicanconf import * | |
SITEURL = 'https://www.zimmi.cz/posts' | |
RELATIVE_URLS = False | |
THEME = 'content/theme/simple' | |
FEED_DOMAIN = SITEURL | |
FEED_ALL_ATOM = 'atom.xml' | |
CATEGORY_FEED_ATOM = None | |
FEED_ALL_RSS = 'feed.xml' | |
OUTPUT_PATH = 'posts/' | |
DELETE_OUTPUT_DIRECTORY = False | |
TYPOGRIFY = True | |
# Following items are often useful when publishing | |
ARTICLE_URL = '{date:%Y}/{slug}/' | |
ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html' | |
GOOGLE_ANALYTICS = True | |
PLUGIN_PATHS = ['content/pelican-plugins'] | |
PLUGINS = ['neighbors', 'assets', 'optimize_images'] | |
CACHE_CONTENT = True | |
LOAD_CONTENT_CACHE = True | |
CACHE_PATH = 'cache' | |
CHECK_MODIFIED_METHOD = 'mtime' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment