This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user