feat: Error pages + Makefile improvements
Error pages: Add error pages for 404 and 50X errors by nginx Makefile improvements: Remove shit.sh and replace it by improving the Makefile
This commit is contained in:
13
frontend/src/error.html
Normal file
13
frontend/src/error.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Lateinicus - 50X</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Du hast einen Serverfehler gefunden!</h1><br />
|
||||
Das sollte nicht passieren... Das ist dann wohl meine Schuld...<br />
|
||||
<img src="http://www.sharegif.com/wp-content/uploads/2013/11/anime-confused-gif.gif" />
|
||||
<br />
|
||||
<a href="/app/">Zu Lateinicus</a>
|
||||
</body>
|
||||
</html>
|
||||
13
frontend/src/lost.html
Normal file
13
frontend/src/lost.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Lateinicus - 404</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Du hast ein 404 entdeckt</h1><br />
|
||||
Du solltest hier aber nicht sein...<br />
|
||||
<img src="https://thumbs.gfycat.com/HealthyCornyAmazontreeboa-small.gif" />
|
||||
<br />
|
||||
<a href="/app/">Zu Lateinicus</a>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user