Last active
August 29, 2015 14:05
-
-
Save nickfun/d58cb72e507ac02ffcc2 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 | |
AUTHOR = u'Nick Fun' | |
SITENAME = u'Implementation Specific' | |
SITEURL = 'https://nickfun.github.io' | |
DISQUS_SITENAME = 'nickfun' | |
PATH = 'content' | |
TIMEZONE = 'America/Los_Angeles' | |
DEFAULT_LANG = u'en' | |
# Feed generation is usually not desired when developing | |
FEED_ALL_ATOM = "feeds/all.atom.xml" | |
CATEGORY_FEED_ATOM = "feeds/%s.atom.xml" | |
TRANSLATION_FEED_ATOM = None | |
FEED_MAX_ITEMS = 10 | |
GOOGLE_ANALYTICS = "UA-56326093-1" | |
# Social widget | |
SOCIAL = (('GitHub', 'http://github.com/nickfun/'), | |
('twitter', 'http://twitter.com/sevengraff'), | |
) | |
# Blogroll | |
LINKS = () | |
#LINKS = (('You can add links in your config file', '#'), | |
# ('Another social link', '#'),) | |
DEFAULT_PAGINATION = False | |
OUTPUT_RETENTION = ('.git', 'readme.md') | |
ARTICLE_URL = 'posts/{date:%Y}/{slug}.html' | |
ARTICLE_SAVE_AS = ARTICLE_URL | |
ARCHIVES_SAVE_AS = 'posts/index.html' | |
YEAR_ARCHIVE_SAVE_AS = 'posts/{date:%Y}/index.html' | |
ARCHIVES_URL = "posts/index.html" | |
AUTHOR_URL = "" | |
AUTHOR_SAVE_AS = "" | |
# Uncomment following line if you want document-relative URLs when developing | |
#RELATIVE_URLS = True | |
THEME = "/home/nick/my-pelican-theme/" | |
BOOTSTRAP_THEME = "united" | |
CUSTOM_CSS = "theme/css/custom-nick.css" | |
""" | |
Options for BOOTSTRAP_THEME | |
amelia | |
cerulean | |
cosmo | |
cyborg | |
flatly | |
journal | |
readable | |
readable-old | |
simplex | |
slate (nice) | |
spacelab | |
united (also good) | |
yeti (good but all same color) | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment