From cf971286b72cf55ade3dbe43040a7b084cbdc6ba Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 21 Feb 2020 15:45:10 +0100 Subject: [PATCH] Add informations about author --- pelicanconf.py | 37 ++++++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index bec5de8..f54727a 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -2,9 +2,9 @@ # -*- coding: utf-8 -*- # from __future__ import unicode_literals -AUTHOR = 'ephase' SITENAME = 'Xieme-Art' SITEURL = 'https://xieme-art.org' +SITESUBTITLE = "Blog personnel d'un Geek amateur de technologies open-sources" DEFAULT_PAGINATION = 10 TYPOGRIFY = True @@ -22,9 +22,20 @@ LINKS = ( ('Giroll', 'https://giroll.org'), ('Aquilenet', "https://aquilenet.fr"), ) + +AUTHOR = 'ephase' +BIO = "Je suis Yorick, ephase de mon pseudo. Geek Libriste et gameur depuis \ + 1979, co-fondateur du collectif Giroll et administrateur système. \ + Je ne joue que sur des machines Linux / BSD" +PROFILE_IMAGE = "assets/souris.svg" + # Social widget SOCIAL = ( - ('mastodon', 'https://toot.aquilenet.fr/@ephase'), + ('git', 'https://git.epha.se/'), + ('mastodon', 'https://toot.aquilenet/.fr/@ephase'), + ('github', 'https://github.com'), + ('linkedin', 'https://www.linkedin.com/in/ephase/'), + ('twitter', 'https://twitter.com/ephase'), ) @@ -34,7 +45,7 @@ ARTICLE_URL = 'post/{slug}/' ARTICLE_SAVE_AS = 'post/{slug}/index.html' CATEGORY_URL = 'category/{slug}/' CATEGORY_SAVE_AS = 'category/{slug}/index.html' -TAG_URL = 'tag/{slug}/' +TAG_URL = 'tag/ {slug}/' TAG_SAVE_AS = 'tag/{slug}/index.html' AUTHOR_SAVE_AS = 'author/{slug}/index.html' AUTHOR_URL = 'author/{slug}/' @@ -59,16 +70,16 @@ PLUGINS = ['neighbors'] HEADER_COVER = 'assets/backgrounds/sigean.jpg' COLOR_SCHEME_CSS = 'monokai.css' AUTHORS_BIO = { - "ephase": { - "cover": "/assets/souris.png" - } -} -AUTHORS_BIO = { - "ephase": { - "name": "ephase", - "image": "assets/souris.svg", - "bio": "Geek Libriste et gameur depuis 1979, co-fondateur du collectif Giroll et administrateur système en devenir. Je ne joue que sur des machines Linux / BSD", - } + "ephase": { + "name": "ephase", + "image": "assets/souris.svg", + "bio": "Geek Libriste et gameur depuis 1979, co-fondateur du collectif \ + Giroll et administrateur système en devenir. Je ne joue que sur des \ + machines Linux / BSD", + "cover": "assets/backgrounds/sigean.jpg", + "mastodon": "https://toot.aquilenet.fr/@ephase", + "twitter": "https://twitter.com/ephase" + } } # Uncomment following line if you want document-relative URLs when developing