Init con Hugo, conversione ListedDownsync.js, fix metadati post

This commit is contained in:
2024-08-24 02:16:17 +02:00
parent a8a226b4f4
commit dda72042fd
151 changed files with 2063 additions and 1033 deletions

18
Scripts/Build.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/sh
. "$(dirname "$(realpath "$0")")/.Globals.sh"
cd "${swd}/.."
mkdir -p ./build
cd ./build
cp -r \
../archetypes ../content \
../layouts ../themes \
../config.toml ../hugo.toml \
./
sh "${swd}/Translate.Get.sh"
$([ -n "$(which python3)" ] && echo python3 || echo python) "${swd}/Translate.Main.py"
sh "${swd}/Translate.Apply.sh"
hugo
sh "${swd}/Translate.Push.sh"
cd "${owd}"