Add informations about author

This commit is contained in:
Yorick Barbanneau 2020-02-21 15:45:10 +01:00
parent c1ab78875e
commit cf971286b7

View file

@ -2,9 +2,9 @@
# -*- coding: utf-8 -*- # # -*- coding: utf-8 -*- #
from __future__ import unicode_literals from __future__ import unicode_literals
AUTHOR = 'ephase'
SITENAME = 'Xieme-Art' SITENAME = 'Xieme-Art'
SITEURL = 'https://xieme-art.org' SITEURL = 'https://xieme-art.org'
SITESUBTITLE = "Blog personnel d'un Geek amateur de technologies open-sources"
DEFAULT_PAGINATION = 10 DEFAULT_PAGINATION = 10
TYPOGRIFY = True TYPOGRIFY = True
@ -22,9 +22,20 @@ LINKS = (
('Giroll', 'https://giroll.org'), ('Giroll', 'https://giroll.org'),
('Aquilenet', "https://aquilenet.fr"), ('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 widget
SOCIAL = ( 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' ARTICLE_SAVE_AS = 'post/{slug}/index.html'
CATEGORY_URL = 'category/{slug}/' CATEGORY_URL = 'category/{slug}/'
CATEGORY_SAVE_AS = 'category/{slug}/index.html' CATEGORY_SAVE_AS = 'category/{slug}/index.html'
TAG_URL = 'tag/{slug}/' TAG_URL = 'tag/ {slug}/'
TAG_SAVE_AS = 'tag/{slug}/index.html' TAG_SAVE_AS = 'tag/{slug}/index.html'
AUTHOR_SAVE_AS = 'author/{slug}/index.html' AUTHOR_SAVE_AS = 'author/{slug}/index.html'
AUTHOR_URL = 'author/{slug}/' AUTHOR_URL = 'author/{slug}/'
@ -59,16 +70,16 @@ PLUGINS = ['neighbors']
HEADER_COVER = 'assets/backgrounds/sigean.jpg' HEADER_COVER = 'assets/backgrounds/sigean.jpg'
COLOR_SCHEME_CSS = 'monokai.css' COLOR_SCHEME_CSS = 'monokai.css'
AUTHORS_BIO = { AUTHORS_BIO = {
"ephase": { "ephase": {
"cover": "/assets/souris.png" "name": "ephase",
} "image": "assets/souris.svg",
} "bio": "Geek Libriste et gameur depuis 1979, co-fondateur du collectif \
AUTHORS_BIO = { Giroll et administrateur système en devenir. Je ne joue que sur des \
"ephase": { machines Linux / BSD",
"name": "ephase", "cover": "assets/backgrounds/sigean.jpg",
"image": "assets/souris.svg", "mastodon": "https://toot.aquilenet.fr/@ephase",
"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", "twitter": "https://twitter.com/ephase"
} }
} }
# Uncomment following line if you want document-relative URLs when developing # Uncomment following line if you want document-relative URLs when developing