58 lines
2.1 KiB
Plaintext
58 lines
2.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Error - Asteroid Radio</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/x-icon" href="/asteroid/static/favicon.ico">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/asteroid/static/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/asteroid/static/favicon-16x16.png">
|
|
<link rel="stylesheet" type="text/css" href="/asteroid/static/asteroid.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1 style="display: flex; align-items: center; justify-content: center; gap: 15px;">
|
|
<img src="/asteroid/static/asteroid.png" alt="Asteroid" style="height: 50px; width: auto;">
|
|
<span>ASTEROID RADIO</span>
|
|
<img src="/asteroid/static/asteroid.png" alt="Asteroid" style="height: 50px; width: auto;">
|
|
</h1>
|
|
<nav class="nav">
|
|
<a href="/asteroid/">Home</a>
|
|
<a href="/asteroid/player">Player</a>
|
|
<a href="/asteroid/about">About</a>
|
|
</nav>
|
|
</header>
|
|
<main style="max-width: 800px; margin: 0 auto; padding: 20px;">
|
|
<section style="margin-bottom: 30px;">
|
|
<h2 style="color: #00ff00; border-bottom: 2px solid #00ff00; padding-bottom: 10px;">
|
|
<c:if test="error-title">
|
|
<c:then>
|
|
<c:splice lquery="(text error-title)"></c:splice>
|
|
</c:then>
|
|
<c:else>
|
|
⚠️ Something went wrong with your request!
|
|
</c:else>
|
|
</c:if>
|
|
</h2>
|
|
<p style="line-height: 1.6; font-size: 1.2rem;">
|
|
<c:if test="error-message">
|
|
<c:then>
|
|
<c:splice lquery="(text error-message)"></c:splice>
|
|
</c:then>
|
|
<c:else>
|
|
We seem to be unable to process your request right now.
|
|
</c:else>
|
|
</c:if>
|
|
</p>
|
|
<c:if test="error-action">
|
|
<c:then>
|
|
<p style="line-height: 1.6; font-size: 1.2rem;" lquery="(text error-action)"></p>
|
|
</c:then>
|
|
</c:if>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|