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'])