From 8084dbf201e9d6607d60fa24cd5d355fcd7311fb Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 28 Dec 2016 22:03:45 +0100 Subject: [PATCH] Ajout de parametres supplementaires pour le theme elegant --- pelicanconf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pelicanconf.py b/pelicanconf.py index f83b9e7..5297e98 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -9,6 +9,9 @@ DEFAULT_CATEGORY = 'Système' THEME='./theme' DIRECT_TEMPLATES = (('index', 'tags', 'categories','archives', 'search', '404')) +LANDING_PAGE_ABOUT ={'title' : 'Un blog où je parlerai système, réseau, et de divers trucs'} + + PATH = 'content' STATIC_PATHS = ['theme/images', 'images'] ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{slug}.html' @@ -42,8 +45,10 @@ PELICAN_COMMENT_SYSTEM_DIR = 'comments' PELICAN_COMMENT_SYSTEM_AUTHORS = { ('Victor',): "images/authors/face.png", ('victor',): "images/authors/face.png", + ('victorhery',): "images/authors/face.png", } COMMENT_URL = "#comment_{slug}" +COMMENTS_INTRO = "Si vous avez des questions, si quelque chose n'est pas clair, n'hésitez pas à commenter !" #Markdown PLUGINS MD_EXTENSIONS = (['toc'])