First commit: draft of the blog
This commit is contained in:
44
pelicanconf.py
Normal file
44
pelicanconf.py
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*- #
|
||||
from __future__ import unicode_literals
|
||||
|
||||
AUTHOR = 'Fabrice Mouhartem'
|
||||
SITENAME = 'Fabrice Mouhartem'
|
||||
SITEURL = ''
|
||||
|
||||
# Theme
|
||||
THEME = "themes/clean-blog"
|
||||
HEADER_COVER='images/cover_home.jpg'
|
||||
HEADER_COLOR='black'
|
||||
COLOR_SCHEME_CSS = 'monokai.css'
|
||||
DISPLAY_PAGES_ON_MENU = False
|
||||
DISPLAY_CATEGORIES_ON_MENU = True
|
||||
|
||||
PATH = 'content'
|
||||
STATIC_PATHS = ['images', 'examples']
|
||||
|
||||
TIMEZONE = 'Europe/Paris'
|
||||
|
||||
DEFAULT_LANG = 'en'
|
||||
DEFAULT_DATE_FORMAT = '%Y.%m.%d'
|
||||
|
||||
# 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
|
||||
LINKS = (('Pelican', 'http://getpelican.com/'),
|
||||
('Python.org', 'http://python.org/'),
|
||||
('Jinja2', 'http://jinja.pocoo.org/'),
|
||||
('You can modify those links in your config file', '#'),)
|
||||
|
||||
# Social widget
|
||||
SOCIAL = ()
|
||||
|
||||
DEFAULT_PAGINATION = 10
|
||||
|
||||
# Uncomment following line if you want document-relative URLs when developing
|
||||
#RELATIVE_URLS = True
|
Reference in New Issue
Block a user