nekrochan/templates/error.html

25 řádky
800 B
HTML
Surový Normální zobrazení Historie

2023-12-11 15:18:43 +00:00
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chyba</title>
2024-02-17 21:24:39 +00:00
<link rel="stylesheet" href='/static/themes/{% include "../theme.txt" %}'>
2023-12-11 15:18:43 +00:00
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="main">
<div class="container">
<h1 class="title">Je konec...</h1>
2024-01-08 17:45:11 +00:00
<table class="data-table center">
<tr><th>Chyba {{ error_code }}</th></tr>
2023-12-11 15:18:43 +00:00
{% if !error_message.is_empty() %}
2024-01-08 17:45:11 +00:00
<tr><td>{{ error_message }}</td></tr>
2023-12-11 15:18:43 +00:00
{% endif %}
2024-01-08 17:45:11 +00:00
</table>
2023-12-11 15:18:43 +00:00
</div>
</div>
</body>
</html>