25 lines
897 B
HTML
25 lines
897 B
HTML
<!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>
|