blob: 366126083af41788c65cba8023d941ed5853de38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Audric Schiltknecht'
SITENAME = 'Ma vie, mon œuvre - oupa'
SITEURL = ''
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'fr'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
# Blogroll
LINKS = (('Wiki de Jérome', 'http://wiki.drouet.eu/'),)
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
# THEMES
THEME = "./themes/dev-urandom"
# Static content to copy to output dir
STATIC_PATHS = ['static']
# Footer text - License
FOOTER_TEXT = """This work by <a xmlns:cc="http://creativecommons.org/ns#" href="http://schiltknecht.org" property="cc:attributionName" rel="cc:attributionURL">Audric Schiltknecht</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>."""
|