Add about page

This commit is contained in:
Yorick Barbanneau 2020-03-17 01:49:07 +01:00
parent d6af9379fc
commit e8f2cc574c
5 changed files with 46 additions and 2 deletions

View file

@ -31,6 +31,7 @@ BIO = "Je suis Yorick, ephase de mon pseudo. Geek et gameur depuis \
1979, co-fondateur du collectif Giroll et administrateur système \
spécialisé dans les technologies open-sources."
PROFILE_IMAGE = "assets/souris.svg"
ABOUT_PAGE = '/page/portofolio/'
# Social widget
SOCIAL = (
@ -52,9 +53,12 @@ TAG_URL = 'tag/{slug}/'
TAG_SAVE_AS = 'tag/{slug}/index.html'
AUTHOR_SAVE_AS = 'author/{slug}/index.html'
AUTHOR_URL = 'author/{slug}/'
STATIC_PATHS = ['assets']
STATIC_PATHS = ['assets', 'files']
EXTRA_PATH_METADATA = {'assets/favicon.png':{'path': 'favicon.ico'}}
PAGE_URL = 'page/{slug}/'
PAGE_SAVE_AS = 'page/{slug}/index.html'
TIMEZONE = 'Europe/Paris'
LOCALE = 'fr_FR.UTF-8'
DEFAULT_LANG = 'fr'