blob: 3ad6d839c092933e3a4297cf2712487e59aa5c00 (
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
32
33
34
35
36
37
38
39
40
41
|
AUTHOR = 'Audric Schiltknecht'
SITENAME = 'Ma vie, mon œuvre - oupa'
SITEURL = ""
PATH = "content"
TIMEZONE = 'America/Toronto'
DEFAULT_LANG = 'fr'
# 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
# Theme configuration
THEME = "./themes/dev-urandom"
# Blogroll
LINKS = (('Wiki de Jérome', 'http://wiki.drouet.eu/'),)
# Social widget
SOCIAL = (
("Git", "https://git.chemicalstorm.org/"),
("GitHub", "https://github.com/audricschiltknecht/"),
("LinkedIn", "https://www.linkedin.com/in/audricschiltknecht/"),
)
DEFAULT_PAGINATION = 10
DISPLAY_PAGES_ON_MENU=True
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
# Static content to copy to output dir
STATIC_PATHS = ['static']
FOOTER_TEXT = """This work by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.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>."""
|