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:
parent
d496dec773
commit
8db9a93507
14
backend/download-bootstrap.sh
Executable file
14
backend/download-bootstrap.sh
Executable 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."
|
12072
backend/static/css/bootstrap.css
vendored
12072
backend/static/css/bootstrap.css
vendored
File diff suppressed because it is too large
Load Diff
6315
backend/static/js/bootstrap.bundle.js
vendored
6315
backend/static/js/bootstrap.bundle.js
vendored
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user