Initial commit
Build und Push Docker Image / build-and-push (push) Failing after 49s

This commit is contained in:
2026-08-20 12:24:38 +02:00
commit 36180448e1
29 changed files with 2917 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>{{ title }} WDM Performance</title>
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='logo.svg') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div id="app">
<div class="header">
<img class="header-logo" src="{{ url_for('static', filename='logo.svg') }}" alt="Logo">
<h1>{{ title }}</h1>
{% if subtitle %}<div class="subtitle">{{ subtitle }}</div>{% endif %}
</div>
<div class="content {{ content_class or '' }}">
{% if error %}<div class="error-box">{{ error }}</div>{% endif %}
{% if info %}<div class="info-box">{{ info }}</div>{% endif %}
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>