c0de.dev-blog/pelican/pelicanconf.py

85 lines
2.2 KiB
Python
Raw Normal View History

2019-05-27 05:44:41 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'c0de'
2019-05-29 01:41:18 +00:00
SITENAME = "c0de's development"
SITESUBTITLE = "<i class=\"far fa-dollar-sign\"></i> cat /proc/c0de/thoughts"
2019-05-27 05:44:41 +00:00
SITEURL = ''
PATH = 'content'
TIMEZONE = 'America/Chicago'
DEFAULT_LANG = 'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
2019-05-29 01:41:18 +00:00
#LINKS = (('Personal Site', 'https://c0defox.es'),)
2019-05-27 05:44:41 +00:00
# Social widget
2019-05-29 01:41:18 +00:00
SOCIAL = (('github', 'https://github.com/alopexc0de'),
('keybase', 'https://keybase.io/alopexc0de'),
('telegram', 'https://t.me/c0defox'),)
SHARE = True
2019-05-27 05:44:41 +00:00
DEFAULT_PAGINATION = 20
# Uncomment following line if you want document-relative URLs when developing
2019-05-27 05:53:14 +00:00
#RELATIVE_URLS = True
2019-05-27 06:31:31 +00:00
USE_FOLDER_AS_CATEGORY = True # Use directories in content to specify the category
DEFAULT_CATEGORY = 'none'
2019-05-27 06:54:27 +00:00
2019-05-29 01:41:18 +00:00
# Theme settings
THEME = "theme"
THEME_STATIC_PATHS = ['static']
CSS_FILE = "main.css"
# Required settings to allow correct behavior of theme
TAG_SAVE_AS = ""
AUTHOR_SAVE_AS = ""
DIRECT_TEMPLATES = ('index', 'categories', 'archives', 'past_readings', 'search', 'tipue_search')
FOOTER = ("Content produced is &copy; <a href=\"mailto:c0de@c0de.dev\">c0de</a>. All rights reserved.<br />" +
"Code snippets on this site are, unless otherwise noted, released under " +
"<a href=\"https://opensource.org/licenses/MIT\" target=\"_license\">The MIT License</a>.")
TWITTER_USERNAME = "foxyc0de"
DISPLAY_PAGES_ON_MENU = False
# Plugin paths and activated ones
PLUGIN_PATHS = ['plugins/encrypt-content',
2019-05-29 01:41:18 +00:00
'plugins/upstream',
'plugins']
2019-05-27 18:34:21 +00:00
2019-05-29 01:41:18 +00:00
PLUGINS = ['encrypt_content', 'deadlinks', 'bootstrapify', 'tipue_search']
2019-05-27 06:54:27 +00:00
# Plugin specific settings below
# Encrypt-Content Settings
2019-05-27 06:54:27 +00:00
ENCRYPT_CONTENT = {
'title_prefix': '[Encrypted]',
'summary': 'This content is encrypted and requires a password to unlock'
}
# Deadlink Settings
DEADLINK_VALIDATION = True
DEADLINK_OPTS = {
'archive': True,
'classes': ['disabled'],
'labels': True,
'timeout_duration_ms': 3000,
'timeout_is_error': False
}