diff options
author | Audric Schiltknecht <storm@chemicalstorm.org> | 2025-08-11 20:31:11 -0400 |
---|---|---|
committer | Audric Schiltknecht <storm@chemicalstorm.org> | 2025-08-11 20:31:44 -0400 |
commit | 110a06e0aa84b5b8a8e280588424edf62fd099cf (patch) | |
tree | a3a75d17ba5540610df8c2d4c77c28de9c239714 /pelicanconf.py | |
parent | c886955883cd81499cef6f7678e3cc75631ec09a (diff) | |
download | schiltknecht.org-110a06e0aa84b5b8a8e280588424edf62fd099cf.tar.gz schiltknecht.org-110a06e0aa84b5b8a8e280588424edf62fd099cf.tar.bz2 schiltknecht.org-110a06e0aa84b5b8a8e280588424edf62fd099cf.zip |
Maj pelican & thème
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 3661260..534bace 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -1,12 +1,10 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- # -from __future__ import unicode_literals - AUTHOR = 'Audric Schiltknecht' SITENAME = 'Ma vie, mon œuvre - oupa' -SITEURL = '' +SITEURL = "" + +PATH = "content" -TIMEZONE = 'Europe/Paris' +TIMEZONE = 'America/Toronto' DEFAULT_LANG = 'fr' @@ -14,18 +12,29 @@ DEFAULT_LANG = 'fr' 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/'),) -# Uncomment following line if you want document-relative URLs when developing -#RELATIVE_URLS = True +# Social widget +# SOCIAL = ( +# ("You can add links in your config file", "#"), +# ("Another social link", "#"), +# ) -# THEMES -THEME = "./themes/dev-urandom" +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 - 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>.""" +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>.""" |