32 řádky
1.1 KiB
HTML
32 řádky
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="cs">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Chyba</title>
|
||
|
{# Error pages are yotsuba (they just are, okay?) #}
|
||
|
{# Go ahead and edit this manually if you actually care #}
|
||
|
<link rel="stylesheet" href="/static/themes/yotsuba.css">
|
||
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="top"></div>
|
||
|
<div class="main">
|
||
|
<div class="container">
|
||
|
<h1 class="title">Je konec...</h1>
|
||
|
|
||
|
<table class="data-table center">
|
||
|
<tr><th>Chyba {{ error_code }}</th></tr>
|
||
|
{% if !error_message.is_empty() %}
|
||
|
<tr><td>{{ error_message }}</td></tr>
|
||
|
{% endif %}
|
||
|
</table>
|
||
|
</div>
|
||
|
<div class="footer">
|
||
|
<div class="box inline-block">Všechny příspěvky na této stránce byly vytvořeny náhodnými uživateli.</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="bottom"></div>
|
||
|
</body>
|
||
|
</html>
|