mindlair/publishconf.py
Irrlicht 692dda752f [style][template][config] Switch to Pelican and put the basic layout in place
- wi choose to switch to Pelican static site generator because it's
  written in Python, a language quite accessible to iss. It is also the
  same tool wi use for irr blog. It just makes sense.
- Design the landing page by overriding the index template using Pelican
  THEME_TEMPLATES_OVERRIDE to simplify the change.
- Design the contact page with gpg key and OMEMO fingerprint sign using
  that key.
- Custom CSS for the banner and the link card of the landing page.
2025-10-07 08:17:02 +02:00

15 lines
347 B
Python

import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = "https://mindlair.fr"
RELATIVE_URLS = False
FEED_ALL_ATOM = "feeds/all.atom.xml"
CATEGORY_FEED_ATOM = "feeds/{slug}.atom.xml"
OUTPUT_PATH = "publish"
DELETE_OUTPUT_DIRECTORY = True