Add Bootstrap assets and download script for offline support

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till Tomczak 2025-03-24 11:11:05 +01:00
parent d496dec773
commit 8db9a93507
3 changed files with 18395 additions and 8 deletions

14
backend/download-bootstrap.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# Skript zum Herunterladen der vollständigen Bootstrap CSS
# Verzeichnis erstellen falls es nicht existiert
mkdir -p "$(dirname "$0")/static/css"
# Bootstrap CSS herunterladen
wget -O "$(dirname "$0")/static/css/bootstrap.css" https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.css
# Optional: JavaScript-Datei auch herunterladen
wget -O "$(dirname "$0")/static/js/bootstrap.bundle.js" https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.js
echo "Bootstrap-Dateien wurden erfolgreich heruntergeladen."

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff