123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- from __future__ import unicode_literals
- AUTHOR = 'demure'
- SITENAME = 'demu.red'
- SITEURL = ''
- TIMEZONE = 'America/Detroit'
- DEFAULT_LANG = 'en'
- DEFAULT_PAGINATION = True
- PATH = 'content'
- EXTRA_PATH_METADATA = {
- 'extra/robots.txt': {'path': 'robots.txt'},
- 'extra/favicon.ico': {'path': 'favicon.ico'},
- 'extra/error.html': {'path': 'error.html'},
- }
- STATIC_PATHS = [
- 'pics',
- 'extra/robots.txt',
- 'extra/favicon.ico',
- 'extra/error.html',
- ]
- PAGE_PATHS = ['pages']
- ARTICLE_PATHS = ['articles']
- IGNORE_FILES = ['.template', '*draft*']
- ARTICLE_URL = 'blog/{date:%Y}/{date:%m}/{slug}/'
- ARTICLE_SAVE_AS = 'blog/{date:%Y}/{date:%m}/{slug}/index.html'
- PAGE_URL = 'pages/{slug}/'
- PAGE_SAVE_AS = 'pages/{slug}/index.html'
- FEED_ALL_ATOM = None
- CATEGORY_FEED_ATOM = None
- TRANSLATION_FEED_ATOM = None
- AUTHOR_FEED_ATOM = None
- AUTHOR_FEED_RSS = None
- THEME = "pelican-twitchy"
- PLUGIN_PATHS = ['/home/demure/projects/git/pelican-plugins']
- PLUGINS = [
- 'pelican-toc',
- 'bootstrapify',
- 'sitemap',
- ]
-
- SITESUBTITLE = "A place of geekery"
- RECENT_POST_COUNT = 5
- EXPAND_LATEST_ON_INDEX = True
-
-
- BOOTSTRAP_THEME = "yeti"
-
-
-
-
-
-
- SOCIAL = (
- ('RSS', 'http://demu.red/feeds/all.atom.xml'),
- ('Twitter', 'https://twitter.com/demure'),
- ('NotABug', 'https://notabug.org/demure'),
- ('DeviantArt', 'https://demuredemeanor.deviantart.com'),
- ('Etsy', 'https://www.etsy.com/shop/demuredemeanor'),
- ('Ko-fi', 'https://ko-fi.com/demure'),
- ('GitHub', 'https://github.com/demure/'),
- ('EMAIL', 'mailto:demuredemeanor+blog@gmail.com'),
- ('Stack-Overflow', 'https://stackoverflow.com/users/2327476/demure'),
- ('Stack-Exchange', 'https://stackexchange.com/users/2580702/demure'),
- )
- HIDE_SITENAME = False
- DISPLAY_RECENT_POSTS_ON_MENU = True
- DISPLAY_PAGES_ON_MENU = True
- DISPLAY_CATEGORIES_ON_MENU = True
- DISPLAY_TAGS_ON_MENU = False
-
-
-
-
-
-
-
-
-
-
- CC_LICENSE = "CC-BY-NC-SA"
-
-
-
-
- CC_ATTR_MARKUP = True
-
-
- TOC = {
- 'TOC_HEADERS' : '^h[1-6]',
-
- 'TOC_RUN' : 'true'
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- SITEMAP = {
- 'format': 'xml',
- 'priorities': {
- 'articles': 0.5,
- 'indexes': 0.6,
- 'pages': 0.3
- },
- 'changefreqs': {
- 'articles': 'monthly',
- 'indexes': 'daily',
- 'pages': 'monthly'
- }
- }
|