Compare commits
4 Commits
83129f591d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
f9396818a7
|
|||
|
4975838301
|
|||
| 81a9ae5a43 | |||
|
55dc0f857e
|
@@ -357,6 +357,15 @@ a:not(:has(img)):hover { text-decoration: underline; }
|
|||||||
margin-bottom: auto;
|
margin-bottom: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
font-family: Monospace, system-ui;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error a {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
/*Shit to make it not terrible for mobile users.*/
|
/*Shit to make it not terrible for mobile users.*/
|
||||||
@media (max-width: 1200px) {
|
@media (max-width: 1200px) {
|
||||||
.content {
|
.content {
|
||||||
|
|||||||
27
errors/401.html
Normal file
27
errors/401.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css">
|
||||||
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||||
|
|
||||||
|
<title>401!</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="error">
|
||||||
|
<h1>401!</h1>
|
||||||
|
<h2>401 - Unauthorized</h2>
|
||||||
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
||||||
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/401">Learn more about this code.</a> </h4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clouds">
|
||||||
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="night"></canvas>
|
||||||
|
<script src="/assets/js/script.js" defer></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
27
errors/403.html
Normal file
27
errors/403.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css">
|
||||||
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||||
|
|
||||||
|
<title>403!</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="error">
|
||||||
|
<h1>403!</h1>
|
||||||
|
<h2>403 - Forbidden</h2>
|
||||||
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
||||||
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/403">Learn more about this code.</a> </h4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clouds">
|
||||||
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="night"></canvas>
|
||||||
|
<script src="/assets/js/script.js" defer></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
27
errors/404.html
Normal file
27
errors/404.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css">
|
||||||
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||||
|
|
||||||
|
<title>404!</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="error">
|
||||||
|
<h1>404!</h1>
|
||||||
|
<h2>404 - Page not found</h2>
|
||||||
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
||||||
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/404">Learn more about this code.</a> </h4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clouds">
|
||||||
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="night"></canvas>
|
||||||
|
<script src="/assets/js/script.js" defer></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
27
errors/500.html
Normal file
27
errors/500.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css">
|
||||||
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||||
|
|
||||||
|
<title>500!</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="error">
|
||||||
|
<h1>500!</h1>
|
||||||
|
<h2>500 - Internal Server Error</h2>
|
||||||
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
||||||
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/500">Learn more about this code.</a> </h4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clouds">
|
||||||
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="night"></canvas>
|
||||||
|
<script src="/assets/js/script.js" defer></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
27
errors/502.html
Normal file
27
errors/502.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/assets/css/style.css">
|
||||||
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||||
|
|
||||||
|
<title>502</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="error">
|
||||||
|
<h1>502!</h1>
|
||||||
|
<h2>502 - Bad gateway</h2>
|
||||||
|
<h2><a href="/index.html">Return to the index!</a></h2>
|
||||||
|
<h4><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Status/502">Learn more about this code.</a> </h4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="clouds">
|
||||||
|
<img src="/assets/images/clouds.png" alt="Clouds">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<canvas id="night"></canvas>
|
||||||
|
<script src="/assets/js/script.js" defer></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
@@ -83,6 +83,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://soju.purplebored.pl/gamja/" target="_blank">Open Gamja Web IRC</a></li>
|
<li><a href="https://soju.purplebored.pl/gamja/" target="_blank">Open Gamja Web IRC</a></li>
|
||||||
<li><strong>Location:</strong>NL1</li>
|
<li><strong>Location:</strong>NL1</li>
|
||||||
|
<li><strong>Access:</strong> Everyone who was an account on my soju.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -95,11 +96,15 @@
|
|||||||
<li><strong>Software:</strong> Prosody 13.x</li>
|
<li><strong>Software:</strong> Prosody 13.x</li>
|
||||||
<li><strong>Location:</strong>NL1</li>
|
<li><strong>Location:</strong>NL1</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<a href='https://compliance.conversations.im/server/purplebored.pl'>
|
||||||
|
<img src='https://compliance.conversations.im/badge/purplebored.pl'>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="service-card">
|
<div class="service-card">
|
||||||
<h2>Dis4IRC Bridge</h2>
|
<h2>Dis4IRC Bridge</h2>
|
||||||
<p>A bridge written in java (Not my software) that links Discord chats to IRC channels — request access if needed. (Supports webhooks)</p>
|
<p>A bridge written in java (Not written by me) that links Discord chats to IRC channels — request access if needed. (Supports webhooks)</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>Access:</strong> Case-by-case</li>
|
<li><strong>Access:</strong> Case-by-case</li>
|
||||||
<li><strong>Location:</strong>NL1</li>
|
<li><strong>Location:</strong>NL1</li>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon-item">
|
<div class="icon-item">
|
||||||
<a href="/pages/ygg.html" target="_blank" rel="noopener noreferrer">
|
<a href="/pages/ygg.html" rel="noopener noreferrer">
|
||||||
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
<img src="/assets/images/icons/ygg.png" alt="Information about Yggdrasil">
|
||||||
<span class="icon-label ygg-label">Ygg</span>
|
<span class="icon-label ygg-label">Ygg</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user