forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
AUTHOR = 'Alexis Métaireau'
|
|
SITENAME = "Alexis' log"
|
|
SITEURL = 'http://blog.notmyidea.org'
|
|
TIMEZONE = "Europe/Paris"
|
|
|
|
GITHUB_URL = 'http://github.com/ametaireau/'
|
|
DISQUS_SITENAME = "blog-notmyidea"
|
|
PDF_GENERATOR = False
|
|
REVERSE_CATEGORY_ORDER = True
|
|
LOCALE = "C"
|
|
DEFAULT_PAGINATION = 4
|
|
DEFAULT_DATE = (2012, 3, 2, 14, 1, 1)
|
|
|
|
FEED_ALL_RSS = 'feeds/all.rss.xml'
|
|
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
|
|
|
|
LINKS = (('Biologeek', 'http://biologeek.org'),
|
|
('Filyb', "http://filyb.info/"),
|
|
('Libert-fr', "http://www.libert-fr.com"),
|
|
('N1k0', "http://prendreuncafe.com/blog/"),
|
|
('Tarek Ziadé', "http://ziade.org/blog"),
|
|
('Zubin Mithra', "http://zubin71.wordpress.com/"),)
|
|
|
|
SOCIAL = (('twitter', 'http://twitter.com/ametaireau'),
|
|
('lastfm', 'http://lastfm.com/user/akounet'),
|
|
('github', 'http://github.com/ametaireau'),)
|
|
|
|
# global metadata to all the contents
|
|
DEFAULT_METADATA = (('yeah', 'it is'),)
|
|
|
|
# static paths will be copied under the same name
|
|
STATIC_PATHS = ["pictures", ]
|
|
|
|
# A list of files to copy from the source to the destination
|
|
FILES_TO_COPY = (('extra/robots.txt', 'robots.txt'),)
|
|
|
|
# custom page generated with a jinja2 template
|
|
TEMPLATE_PAGES = {'pages/jinja2_template.html': 'jinja2_template.html'}
|
|
|
|
# foobar will not be used, because it's not in caps. All configuration keys
|
|
# have to be in caps
|
|
foobar = "barbaz"
|
|
|