Files
wdm/build/templates/base.html
T
bryan.hoffmann 36180448e1
Build und Push Docker Image / build-and-push (push) Failing after 49s
Initial commit
2026-08-20 12:24:38 +02:00

25 lines
897 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>