shortlinks mentioned 🗣️🔥‼️
This commit is contained in:
parent
3996e72479
commit
434e5938fa
|
@ -4,16 +4,22 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" value="width=device-width, initial-scale=1">
|
||||
<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>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<a href="/">home</a>
|
||||
<a href="/links">links</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>🏕️<br>welcome to bliss.town!</h1>
|
||||
<hr>
|
||||
<p>
|
||||
we're not hosting anything at this domain just yet.
|
||||
we're not hosting much at this domain just yet.
|
||||
<br>
|
||||
check back later for updates!
|
||||
</p>
|
||||
|
@ -21,7 +27,9 @@
|
|||
<footer>
|
||||
made with ♥ by <a href="https://arimelody.me">ari</a>, 2024
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
33
public/links.html
Normal file
33
public/links.html
Normal 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>
|
|
@ -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 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
@ -66,3 +82,7 @@ footer {
|
|||
padding: 2rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#footer-links {
|
||||
font-size: .8em;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue