mdk.fr/publishconf.py

21 lines
558 B
Python
Raw Normal View History

2017-04-04 21:11:23 +00:00
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
2019-05-23 09:45:57 +00:00
2017-04-04 21:11:23 +00:00
sys.path.append(os.curdir)
from pelicanconf import *
2019-05-23 09:45:57 +00:00
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = "https://mdk.fr"
2021-12-02 12:16:19 +00:00
SITELOGO = SITEURL + "/images/julien.jpg"
2017-04-04 21:11:23 +00:00
RELATIVE_URLS = False
DELETE_OUTPUT_DIRECTORY = True
THEME = "Flex"
2017-04-04 21:11:23 +00:00
2019-05-23 09:45:57 +00:00
FEED_ALL_ATOM = "feeds/all.atom.xml"
CATEGORY_FEED_ATOM = "feeds/{slug}.atom.xml"
AUTHOR_FEED_ATOM = "feeds/{slug}.atom.xml"
AUTHOR_FEED_RSS = "feeds/{slug}.rss.xml"