pastebin mentioned 🗣️🔥‼️

This commit is contained in:
ari melody 2024-04-04 07:42:54 +01:00
parent 434e5938fa
commit 40079b00e1
Signed by: ari
GPG key ID: CF99829C92678188
4 changed files with 64 additions and 12 deletions

View file

@ -4,7 +4,13 @@
<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">
<meta property="og:site_name" content="🏕️ bliss.town" />
<meta property="og:title" content="welcome to bliss.town!" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bliss.town" />
<link rel="stylesheet" type="text/css" href="/style/main.css">
<style> <style>
</style> </style>
</head> </head>
@ -13,10 +19,11 @@
<nav> <nav>
<a href="/">home</a> <a href="/">home</a>
<a href="/links">links</a> <a href="/links">links</a>
<a href="/paste">paste</a>
</nav> </nav>
</header> </header>
<main> <main>
<h1>🏕️<br>welcome to bliss.town!</h1> <h1><span aria-hidden="true">🏕️</span><br>welcome to bliss.town!</h1>
<hr> <hr>
<p> <p>
we're not hosting much at this domain just yet. we're not hosting much at this domain just yet.
@ -25,8 +32,7 @@
</p> </p>
</main> </main>
<footer> <footer>
made with ♥ by <a href="https://arimelody.me">ari</a>, 2024 <p>made with <span role="img" aria-label="love">♥ by <a href="https://arimelody.me">ari</a>, 2024</p>
<br>
<div id="footer-links"> <div id="footer-links">
<a href="https://git.arimelody.me/ari/bliss.town">source</a> <a href="https://git.arimelody.me/ari/bliss.town">source</a>
</div> </div>

View file

@ -4,7 +4,13 @@
<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 shortlinks</title> <title>🔗 bliss.town shortlinks</title>
<link rel="stylesheet" type="text/css" href="style/main.css">
<meta property="og:site_name" content="🏕️ bliss.town" />
<meta property="og:title" content="bliss.town shortlinks" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bliss.town/links" />
<link rel="stylesheet" type="text/css" href="/style/main.css">
<style> <style>
</style> </style>
</head> </head>
@ -13,18 +19,20 @@
<nav> <nav>
<a href="/">home</a> <a href="/">home</a>
<a href="/links">links</a> <a href="/links">links</a>
<a href="/paste">paste</a>
</nav> </nav>
</header> </header>
<main> <main>
<h1>🔗<br>bliss.town shortlinks</h1> <h1><span aria-hidden="true">🔗</span><br>bliss.town shortlinks</h1>
<hr> <hr>
<p> <p>
we run an invite-only shortlink service, <code>link.bliss.town</code>, powered by <a href="https://yourls.org/">YOURLS</a>. we run an invite-only shortlink service, <code>link.bliss.town</code>,
<br>
powered by <a href="https://yourls.org/">YOURLS</a>.
</p> </p>
</main> </main>
<footer> <footer>
made with ♥ by <a href="https://arimelody.me">ari</a>, 2024 <p>made with <span role="img" aria-label="love">♥ by <a href="https://arimelody.me">ari</a>, 2024</p>
<br>
<div id="footer-links"> <div id="footer-links">
<a href="https://git.arimelody.me/ari/bliss.town">source</a> <a href="https://git.arimelody.me/ari/bliss.town">source</a>
</div> </div>

41
public/paste.html Normal file
View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" value="width=device-width, initial-scale=1">
<title>📝 bliss.town pastebin</title>
<meta property="og:site_name" content="🏕️ bliss.town" />
<meta property="og:title" content="bliss.town pastebin" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bliss.town/paste" />
<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>
<a href="/paste">paste</a>
</nav>
</header>
<main>
<h1><span aria-hidden="true">📝</span><br>bliss.town pastebin</h1>
<hr>
<p>
we run a public pastebin instance, <a href="https://paste.bliss.town"><code>paste.bliss.town</code></a>,
<br>
powered by <a href="https://docs.dpaste.org">dpaste</a>.
</p>
</main>
<footer>
<p>made with <span role="img" aria-label="love">♥ by <a href="https://arimelody.me">ari</a>, 2024</p>
<div id="footer-links">
<a href="https://git.arimelody.me/ari/bliss.town">source</a>
</div>
</footer>
</body>
</html>

View file

@ -17,7 +17,6 @@
header { header {
width: min(900px, calc(100vw - 4rem)); width: min(900px, calc(100vw - 4rem));
margin: 0 auto; margin: 0 auto;
padding: 2rem 0;
text-align: center; text-align: center;
} }
@ -53,7 +52,6 @@ body {
main { main {
width: min(720px, calc(100vw - 4rem)); width: min(720px, calc(100vw - 4rem));
margin: -2rem auto 0 auto;
text-align: center; text-align: center;
} }
@ -79,7 +77,6 @@ a {
footer { footer {
width: min(900px, calc(100vw - 4rem)); width: min(900px, calc(100vw - 4rem));
margin: 0 auto; margin: 0 auto;
padding: 2rem 0;
text-align: center; text-align: center;
} }