62 lines
1.6 KiB
HTML
62 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Photos</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #181818;
|
|
color: #e0e0e0;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 60px auto;
|
|
background: #222;
|
|
padding: 32px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.32);
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
color: #4fa3ff;
|
|
margin-bottom: 24px;
|
|
}
|
|
.album-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
margin-top: 32px;
|
|
}
|
|
.album-link {
|
|
display: inline-block;
|
|
padding: 16px 32px;
|
|
background: #333;
|
|
color: #fff;
|
|
border-radius: 8px;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
text-decoration: none;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.32);
|
|
transition: background 0.2s;
|
|
}
|
|
.album-link:hover {
|
|
background: #4fa3ff;
|
|
color: #222;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Uh oh! Let's try again.</h1>
|
|
<p>That didn't work. Try clicking on the link again.</p>
|
|
</div>
|
|
<footer style="text-align:center;padding:24px 0 12px 0;color:#888;font-size:16px;position:fixed;left:0;bottom:0;width:100%;background:#181818;">
|
|
Made with © <a href="https://github.com/Brandon4466/galpal" target="_blank" style="color:#4fa3ff;text-decoration:none;">GalPal</a>
|
|
</footer>
|
|
<!-- No album list displayed -->
|
|
</body>
|
|
</html>
|