render
Some checks failed
/ job (push) Failing after 6m12s

This commit is contained in:
Marc Beninca 2025-06-08 12:11:12 +02:00
parent 95aa8e0e5b
commit 4fae5bad34
Signed by untrusted user who does not match committer: marc.beninca
GPG key ID: 9C7613450C80C24F

15
render.sh Executable file
View file

@ -0,0 +1,15 @@
#! /usr/bin/env bash
SETTINGS='settings.py'
function main {
local file="$(realpath "${BASH_SOURCE[0]}")"
local root="$(dirname "${file}")"
cd "${root}"
pelican \
--settings "${SETTINGS}" \
"${@}" && \
ln --symbolic '../theme' 'out/fr'
}
main "${@}"