2016-05-13 21:13:23 +01:00
|
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
from __future__ import unicode_literals
|
2016-07-29 23:07:55 +01:00
|
|
|
from git import Repo
|
2016-05-21 20:35:59 +01:00
|
|
|
import sys, os
|
|
|
|
sys.path.insert(0, os.path.realpath('./plugins'))
|
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Global core settings
|
2016-05-13 21:13:23 +01:00
|
|
|
AUTHOR = 'Jake Howard'
|
|
|
|
SITENAME = 'TheOrangeOne'
|
2016-05-13 21:37:54 +01:00
|
|
|
SITEURL = 'http://theorangeone.net'
|
2016-05-13 21:13:23 +01:00
|
|
|
PATH = 'content'
|
|
|
|
TIMEZONE = 'Europe/London'
|
|
|
|
DEFAULT_LANG = 'en'
|
2016-05-28 22:59:58 +01:00
|
|
|
PAGE_PATHS = ["pages"]
|
|
|
|
THEME = "theme"
|
|
|
|
THEME_STATIC_DIR = "static"
|
2016-06-11 12:53:23 +01:00
|
|
|
THEME_STATIC_PATHS = ["static/build"]
|
|
|
|
STATIC_PATHS = ["assets"]
|
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
USE_FOLDER_AS_CATEGORY = True
|
|
|
|
DEFAULT_PAGINATION = False
|
|
|
|
SLUGIFY_SOURCE = 'basename'
|
2016-05-13 21:13:23 +01:00
|
|
|
|
|
|
|
# Social widget
|
2016-05-29 23:23:55 +01:00
|
|
|
import links
|
2016-06-17 17:26:45 +01:00
|
|
|
ACCOUNTS = links.accounts()
|
2016-06-17 17:17:05 +01:00
|
|
|
FOOTER_LINKS = links.footer()
|
2016-05-29 23:23:55 +01:00
|
|
|
INDEX_PROJECTS = links.index_projects()
|
2016-08-16 22:23:02 +01:00
|
|
|
|
|
|
|
# Extra config
|
2016-07-29 23:07:55 +01:00
|
|
|
REPO = Repo(search_parent_directories=True)
|
2016-08-16 22:23:02 +01:00
|
|
|
BUILD_PRODUCTION = 'BUILD_PRODUCTION' in os.environ
|
2016-05-21 20:35:59 +01:00
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Disable some pages
|
|
|
|
TAG_URL = False
|
|
|
|
TAG_SAVE_AS = False
|
|
|
|
TAGS_SAVE_AS = False
|
|
|
|
AUTHORS_URL = False
|
|
|
|
AUTHORS_SAVE_AS = False
|
|
|
|
CATEGORIES_SAVE_AS = False
|
|
|
|
ARCHIVES_URL = False
|
|
|
|
ARCHIVES_SAVE_AS = False
|
2016-07-29 12:00:06 +01:00
|
|
|
AUTHOR_URL = False
|
|
|
|
AUTHOR_SAVE_AS = False
|
2016-05-13 21:13:23 +01:00
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Override page URLs
|
2016-05-13 21:37:54 +01:00
|
|
|
PAGE_SAVE_AS = "{slug}/index.html"
|
|
|
|
PAGE_URL = "{slug}"
|
2016-05-27 15:16:13 +01:00
|
|
|
ARTICLE_SAVE_AS = "{category}/{slug}/index.html"
|
|
|
|
ARTICLE_URL = "{category}/{slug}/"
|
|
|
|
CATEGORY_SAVE_AS = "{slug}/index.html"
|
2016-05-27 23:19:03 +01:00
|
|
|
CATEGORY_URL = "{slug}/"
|
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Add ATOM feed
|
2016-05-28 22:53:30 +01:00
|
|
|
FEED_ATOM = 'feed.atom'
|
|
|
|
FEED_DOMAIN = SITEURL
|
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Setup plugins
|
2016-06-12 11:34:20 +01:00
|
|
|
PLUGIN_PATHS = ["pelican_plugins", "plugins"]
|
2016-07-29 12:00:06 +01:00
|
|
|
PLUGINS = [
|
|
|
|
"sitemap",
|
|
|
|
"filetime_from_git",
|
|
|
|
"pelican-jinja2content",
|
|
|
|
"metatags",
|
2016-08-16 22:23:02 +01:00
|
|
|
"autopages"
|
2016-07-29 12:00:06 +01:00
|
|
|
]
|
2016-05-17 18:32:23 +01:00
|
|
|
|
2016-08-16 22:23:02 +01:00
|
|
|
if BUILD_PRODUCTION:
|
2016-07-29 21:55:19 +01:00
|
|
|
PLUGINS.append("minify") # only minify on production build
|
|
|
|
|
2016-05-17 18:32:23 +01:00
|
|
|
SITEMAP = {
|
2016-05-27 15:16:13 +01:00
|
|
|
"format": "xml"
|
2016-05-17 18:32:23 +01:00
|
|
|
}
|
2016-06-26 11:57:22 +01:00
|
|
|
CATEGORY_PAGE_PATH = "theme/templates/categories"
|
2016-07-29 12:00:06 +01:00
|
|
|
MINIFY = {
|
2016-07-29 21:55:19 +01:00
|
|
|
"remove_comments": True,
|
|
|
|
"remove_optional_attribute_quotes": False,
|
|
|
|
"reduce_boolean_attributes": True
|
2016-07-29 12:00:06 +01:00
|
|
|
}
|
2016-06-26 11:57:22 +01:00
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Setup markdown extensions
|
2016-05-28 22:26:36 +01:00
|
|
|
from fontawesome_markdown import FontAwesomeExtension
|
2016-06-25 15:22:54 +01:00
|
|
|
from pyembed.markdown import PyEmbedMarkdown
|
2016-06-30 14:29:07 +01:00
|
|
|
from mkdcomments import CommentsExtension
|
|
|
|
MD_EXTENSIONS = [
|
|
|
|
FontAwesomeExtension(),
|
|
|
|
PyEmbedMarkdown(),
|
|
|
|
CommentsExtension(),
|
|
|
|
'codehilite(css_class=highlight)',
|
|
|
|
'extra'
|
|
|
|
]
|
2016-05-28 22:26:36 +01:00
|
|
|
|
2016-05-28 22:59:58 +01:00
|
|
|
# Setup jinja2 filters
|
2016-05-27 15:42:29 +01:00
|
|
|
import filters
|
|
|
|
JINJA_FILTERS = {
|
2016-05-27 23:19:03 +01:00
|
|
|
"datetime": filters.format_datetime,
|
2016-06-03 22:12:34 +01:00
|
|
|
"category_find": filters.category_find,
|
2016-07-01 09:18:55 +01:00
|
|
|
"limit": filters.limit,
|
|
|
|
"format_title": filters.format_title
|
2016-05-27 15:42:29 +01:00
|
|
|
}
|