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 -*- #
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