Añade tema Bootiser basado en Bootstrap

This commit is contained in:
Manuel Cillero 2025-10-12 12:07:02 +02:00
parent ebf1828ea3
commit c1ba4ac7ea
115 changed files with 15682 additions and 4 deletions

View file

@ -50,15 +50,23 @@ case "$CRATE" in
pagetop)
CHANGELOG_FILE="CHANGELOG.md"
PATH_FLAGS=(
# Helpers
--exclude-path "helpers/pagetop-statics/**/*"
--exclude-path "helpers/pagetop-build/**/*"
--exclude-path "helpers/pagetop-macros/**/*"
# Extensions
--exclude-path "extensions/pagetop-aliner/**/*"
--exclude-path "extensions/pagetop-bootsier/**/*"
)
;;
pagetop-aliner)
CHANGELOG_FILE="extensions/pagetop-aliner/CHANGELOG.md"
PATH_FLAGS=(--include-path "extensions/pagetop-aliner/**/*")
;;
pagetop-bootsier)
CHANGELOG_FILE="extensions/pagetop-bootsier/CHANGELOG.md"
PATH_FLAGS=(--include-path "extensions/pagetop-bootsier/**/*")
;;
*)
echo "Error: unsupported crate '$CRATE'" >&2
exit 1