mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
Initial commit
This commit is contained in:
commit
d1e019dd71
9 changed files with 400 additions and 0 deletions
44
pelicanconf.py
Normal file
44
pelicanconf.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
AUTHOR = 'Alchemy'
|
||||
SITENAME = 'pelican-alchemy'
|
||||
SITEURL = '' # Intentionally left blank, see ./publishconf.py
|
||||
|
||||
PATH = 'content'
|
||||
|
||||
TIMEZONE = 'Africa/Nairobi'
|
||||
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
|
||||
|
||||
PLUGIN_PATHS = ['plugins']
|
||||
PLUGINS = ['bootstrapify']
|
||||
|
||||
# Theme settings --------------------------------------------------------------
|
||||
|
||||
SITESUBTITLE = 'A magical \u2728 Pelican theme'
|
||||
SITEIMAGE = '/images/profile.png width=200 height=200'
|
||||
DESCRIPTION = 'A functional, clean, responsive theme for Pelican. Heavily ' \
|
||||
'inspired by crowsfoot and clean-blog, powered by Bootstrap.'
|
||||
|
||||
LINKS = (
|
||||
('Pelican', 'http://getpelican.com/'),
|
||||
('Python.org', 'http://python.org/'),
|
||||
('Jinja2', 'http://jinja.pocoo.org/'),
|
||||
)
|
||||
|
||||
ICONS = (
|
||||
('feed', '/feeds/all.atom.xml'),
|
||||
('github', 'https://github.com/nairobilug/pelican-alchemy'),
|
||||
)
|
||||
|
||||
# Default value is ['index', 'tags', 'categories', 'authors', 'archives']
|
||||
DIRECT_TEMPLATES = ['index', 'tags', 'categories', 'authors', 'archives', 'sitemap']
|
||||
SITEMAP_SAVE_AS = 'sitemap.xml'
|
||||
Loading…
Add table
Add a link
Reference in a new issue