-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternal_server_error.html
More file actions
94 lines (88 loc) · 4.07 KB
/
internal_server_error.html
File metadata and controls
94 lines (88 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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.0">
<meta name="description" content="Server Error of Sheep CS">
<meta name="keywords" content="Sheep CS, Server Error">
<meta name="author" content="Marina Egner">
<title>Sheep CS - Server Error</title>
<link href="/error_docs/styles.css" rel="stylesheet">
<link rel="icon" href="/error_docs/SheepLogoV4GrauTransparent.png" type="image/png">
<link rel="icon" href="/error_docs/SheepLogoV4GrauTransparent.svg" type="image/png">
<script>
document.addEventListener('DOMContentLoaded', () => {
const copyright = document.getElementById('copyright')
copyright.innerText = copyright.innerText.replace('2023', '2023-'+new Date().getFullYear());
const navBarElement = document.getElementById('nav-bar');
window.addEventListener('scroll', function() {
if(window.scrollY > 70) navBarElement.classList.add('nav-on-scroll');
else navBarElement.classList.remove('nav-on-scroll');
});
const menuButtonElement = document.getElementById('hamburger-link');
const menuBarElement = document.getElementById('main-nav');
menuButtonElement.addEventListener('click', (_event) => {
menuButtonElement.classList.toggle('active');
menuBarElement.classList.toggle('active');
});
});
</script>
</head>
<body>
<div class="header-container not-start">
<header id="nav-bar" class="not-start">
<div class="logo-container">
<a class="logo-link" href="https://sheepcs.de"><img class="logo" src="/error_docs/SheepLogoV4GrauTransparent.svg" alt="Sheep CS Logo"></a>
<h1 class="logo-text">Sheep CS</h1>
</div>
<nav id="main-nav">
<a class="nav-link" href="https://blog.en.sheepcs.de/about">About</a>
<a class="nav-link" href="https://blog.en.sheepcs.de/">Blog</a>
<a class="nav-link" href="https://github.com/magraina">GitHub</a>
<a class="nav-link" href="https://sheepcs.de/en/imprint.html">Imprint</a>
<a class="default-btn white-btn" href="mailto:hello@sheepcs.de">Contact</a>
</nav>
<a id="hamburger-link" href="javascript:void(0);"><img id="hamburger-logo" src="/error_docs/hamburger.svg"></a>
</header>
</div>
<div id="main">
<main class="not-start">
<h2>Server Error</h2>
<h3>500 Internal Server Error</h3>
<p class="lead">
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
</p>
<br>
<p>That's what you can do:</p>
<div class="help-actions">
<a href="javascript:location.reload();">Reload Page</a><br>
<a href="javascript:history.back();">Back to Previous Page</a><br>
<a href="/">Home Page</a>
</div>
</main>
</div>
<footer>
<nav>
<span id="copyright">Sheep CS © 2023</span>
<ul>
<li><a href="https://sheepcs.de/">German</a></li>
<li><a href="https://sheepcs.de/en/imprint.html">Imprint</a></li>
<li><a href="https://sheepcs.de/en/privacy-policy.html">Privacy Policy</a></li>
</ul>
<span id="copyright">Created by M.Egner</span>
</nav>
<div class="logo-conatiner">
<a class="logo-link" href="https://sheepcs.de"><img class="logo" src="/error_docs/SheepLogoV4GrauTransparent.svg" alt="Sheep CS Logo"></a>
<div class="social-container">
<a href="https://www.instagram.com/magraina/" target="_blank"><img class="social-logo" src="/error_docs/Instagram.svg" alt="Instagram Logo"></a>
<a href="https://www.linkedin.com/in/marina-egner-93193818a" target="_blank"><img class="social-logo" src="/error_docs/LinkedIn.png" alt="LinkedIn Logo"></a>
<a href="https://www.facebook.com/marina.egner.9/" target="_blank"><img class="social-logo" src="/error_docs/Facebook.png" alt="Facebook Logo"></a>
</div>
<a class="default-btn accent-btn" href="https://plesk.sheepcs.de:8443">Login</a>
</div>
</footer>
</body>
</html>