Add dokument list and error pages

This commit is contained in:
L3D
2021-01-29 11:03:14 +01:00
committed by Lilian Roller
parent 5f4c3f1677
commit 54f8b856bf
17 changed files with 431 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>502 Bad Gateway</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<div class="page">
<div class="main">
<h1>Server Error</h1>
<div class="error-code">502</div>
<h2>Bad Gateway</h2>
<p class="lead">Web server received an invalid response while acting as a gateway or proxy server.</p>
<hr/>
<p>That's what you can do</p>
<div class="help-actions">
<a href="javascript:location.reload();">Reload Page</a>
<a href="javascript:history.back();">Back to Previous Page</a>
<a href="/">Home Page</a>
</div>
</div>
</div>
</body>
</html>