
- 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.
15 lines
347 B
Python
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
|