shortlinks mentioned 🗣️🔥‼️

This commit is contained in:
ari melody 2024-04-04 05:44:19 +01:00
parent 3996e72479
commit 434e5938fa
Signed by: ari
GPG key ID: CF99829C92678188
3 changed files with 64 additions and 3 deletions

View file

@ -4,16 +4,22 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" value="width=device-width, initial-scale=1"> <meta name="viewport" value="width=device-width, initial-scale=1">
<title>🏕️ bliss.town</title> <title>🏕️ bliss.town</title>
<link rel="stylesheet" type="text/css" href="/style/main.css"> <link rel="stylesheet" type="text/css" href="style/main.css">
<style> <style>
</style> </style>
</head> </head>
<body> <body>
<header>
<nav>
<a href="/">home</a>
<a href="/links">links</a>
</nav>
</header>
<main> <main>
<h1>🏕️<br>welcome to bliss.town!</h1> <h1>🏕️<br>welcome to bliss.town!</h1>
<hr> <hr>
<p> <p>
we're not hosting anything at this domain just yet. we're not hosting much at this domain just yet.
<br> <br>
check back later for updates! check back later for updates!
</p> </p>
@ -21,7 +27,9 @@
<footer> <footer>
made with ♥ by <a href="https://arimelody.me">ari</a>, 2024 made with ♥ by <a href="https://arimelody.me">ari</a>, 2024
<br> <br>
<small><a href="https://git.arimelody.me/ari/bliss.town">source</a></small> <div id="footer-links">
<a href="https://git.arimelody.me/ari/bliss.town">source</a>
</div>
</footer> </footer>
</body> </body>
</html> </html>

33
public/links.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" value="width=device-width, initial-scale=1">
<title>🔗 bliss.town shortlinks</title>
<link rel="stylesheet" type="text/css" href="style/main.css">
<style>
</style>
</head>
<body>
<header>
<nav>
<a href="/">home</a>
<a href="/links">links</a>
</nav>
</header>
<main>
<h1>🔗<br>bliss.town shortlinks</h1>
<hr>
<p>
we run an invite-only shortlink service, <code>link.bliss.town</code>, powered by <a href="https://yourls.org/">YOURLS</a>.
</p>
</main>
<footer>
made with ♥ by <a href="https://arimelody.me">ari</a>, 2024
<br>
<div id="footer-links">
<a href="https://git.arimelody.me/ari/bliss.town">source</a>
</div>
</footer>
</body>
</html>

View file

@ -14,6 +14,22 @@
} }
} }
header {
width: min(900px, calc(100vw - 4rem));
margin: 0 auto;
padding: 2rem 0;
text-align: center;
}
header nav {
font-size: .8em;
}
header nav a:not(:first-child)::before {
content: '-';
margin: 0 .8em 0 .5em;
}
body { body {
position: absolute; position: absolute;
top: 0; top: 0;
@ -66,3 +82,7 @@ footer {
padding: 2rem 0; padding: 2rem 0;
text-align: center; text-align: center;
} }
#footer-links {
font-size: .8em;
}