29 řádky
907 B
HTML
Spustitelný soubor
29 řádky
907 B
HTML
Spustitelný soubor
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chyba</title>
|
|
<link rel="stylesheet" href="/static/themes/yotsuba.css">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="container">
|
|
<h1 class="title">Je konec...</h1>
|
|
|
|
<div class="infobox center">
|
|
<div class="infobox-head">
|
|
Chyba {{ error_code }}
|
|
</div>
|
|
{% if !error_message.is_empty() %}
|
|
<div class="infobox-content">
|
|
{{ error_message }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|