This commit is contained in:
William 2023-04-09 00:08:53 +02:00
parent 09a5ed2d23
commit 5973fe3af0
7 changed files with 216 additions and 123 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,62 +1,45 @@
:root { :root {
--primary: #fff; --primary: #fffafa;
--secondary: #eee; --secondary: #f6ebeb;
--text: #111; --text: #111;
--links: #00f; --links: #156215;
--border: #e6d1d1;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--primary: #181818; --primary: #000;
--secondary: #222222; --secondary: #222222;
--text: #eee; --text: #eee;
--links: #aaf; --links: #aaf;
--border: #333;
} }
img { img {
filter: brightness(85%); filter: brightness(90%);
} }
} }
hr {
border: 0;
border-top: 3px dotted var(--border);
}
body { body {
background: var(--primary); background: var(--primary);
margin: 0; margin: 0;
color: var(--text); color: var(--text);
font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
line-height: 1.5; line-height: 1.5;
font-size: 1rem; font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
padding: .75rem; padding: .75rem;
max-width: 47rem; max-width: 40rem;
margin: auto; margin: auto;
} }
hr {
border: 0;
border-bottom: 1px solid var(--text);
}
a { a {
color: var(--links); color: var(--links);
} }
h1 {
font-size: 1.953rem;
line-height: 1.1;
}
h2 {
font-size: 1.563rem;
line-height: 1.2;
}
h3 {
font-size: 1.25rem;
line-height: 1.4;
}
h1+h2,
h2+h3,
h1 {
margin-top: 2rem;
margin-bottom: .75rem;
}
img { img {
display: block; display: block;
height: auto; height: auto;
@ -76,7 +59,10 @@ tbody {
td, td,
th { th {
text-align: left; text-align: left;
padding: .75rem; padding: .375rem;
}
tr {
border-bottom: 1px solid var(--border);
} }
tr:nth-child(even) { tr:nth-child(even) {
background: var(--secondary); background: var(--secondary);
@ -86,6 +72,7 @@ pre,
code { code {
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace; font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
background: var(--secondary); background: var(--secondary);
border: 1px solid var(--border);
} }
pre { pre {
padding: .75rem; padding: .75rem;
@ -94,3 +81,17 @@ pre {
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
} }
blockquote {
font-style: italic;
background: var(--secondary);
padding: .375rem;
padding-left: 1.25rem;
border: 1px solid var(--border);
border-left: .25rem solid var(--border);
margin: 0;
}
h2 {
border-bottom: 1px solid var(--border);
}

View File

@ -1,3 +1,7 @@
</main> </main>
<footer>
<hr>
<p>I am indifferent to the constraints of copyright that may govern the temporal realm of this digital domain from the year of our Lord 2020 to 2023.</p>
</footer>
</body> </body>
</html> </html>

View File

@ -1,23 +1,26 @@
<?php
if (!isset($is_index)) {
$is_index = false;
}
?>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="<?=url('/')?>style.css"> <link rel="stylesheet" href="<?=url('/')?>style.css">
<title><?=$title?> | William's Website</title> <title><?=$title?><?php if ($is_index) {echo '';} else {echo ' | Willy\'s Website';}?></title>
</head> </head>
<body> <body>
<header> <?php if (!$is_index): ?>
<h1>William's Website</h1>
<p><i>More than just willies! Most of the time.</i></p>
<nav> <nav>
<a href="<?=url('/')?>">Homepage</a>, <a href="<?=url('/')?>">&lt; Go back</a>
<a href="//status.trygve.me">Status</a>,
<a href="//arngren.net">Open directory</a>
</nav> </nav>
<hr> <hr>
</header>
<main> <main>
<h1><?=$title?></h1> <h1><?=$title?></h1>
<?php endif; ?>
<main>

View File

@ -1,61 +1,71 @@
<?= view('header', ['is_index' => true, 'title' => 'Service']) ?> <?= view('header', ['is_index' => true, 'title' => 'Willy\'s Website']) ?>
<p>This space hosts some services for me and friends.</p> <h1>Willy's Website</h1>
<div style=" <p>
padding: .75rem; <i>More than just willies! Some of the time</i>
background: var(--secondary); </p>
margin-bottom: .75rem;
">
<h2 style="
margin-top: 0;
"><a href="//git.willy.club">Gitea</a></h2>
<span>A place to host your shitty code</span>
</div>
<s> <hr>
<div style="
padding: .75rem;
background: var(--secondary);
margin-bottom: .75rem;
">
<h2 style="
margin-top: 0;
"><a href="#">Matrix Homeserver</a></h2>
<span>Secure end-to-end encrypted messaging powered by mossad</span>
</div>
</s>
<div style=" <blockquote>For who doesn't fancy a tasteful Willy?</blockquote>
padding: .75rem;
background: var(--secondary);
margin-bottom: .75rem;
">
<h2 style="
margin-top: 0;
"><a href="mumble://mumble.willy.club">Mumble</a></h2>
<span>Shitpost with your mouth</span>
</div>
<h1>Why are we still here</h1> <p>Greetings and salutations esteemed visitors, and allow me to extend a most cordial welcome to my digital domain. I am Willy, the proud proprietor of this magnificent website, a virtual palace of knowledge and enlightenment crafted with the utmost care and precision.</p>
<p>I'm bathing in the flora of the seed of which I have excreted.</p> <p>As an erudite individual with a prodigious intellect and a discerning eye for detail, I have spared no effort in curating a veritable treasure trove of information and wisdom for the benefit of all who grace this hallowed ground with their presence.</p>
<h1>Touch</h1>
<p>Matrix: <a href="https://matrix.to/#/@william:willy.club">@william:willy.club</a></p>
<h1>Blog</h1> <p>So, without further ado, I invite you to immerse yourselves in the wondrous world of Willy's website, where knowledge reigns supreme and the pursuit of truth is a never-ending quest. Let us embark on a journey of discovery together, and may the winds of wisdom and enlightenment guide us towards a brighter and more enlightened future.</p>
<h2>Service</h2>
<p>Lo and behold, within this sacred realm exists a space of great import, one that plays host to a myriad of services that I and my esteemed companions hold dear.</p>
<p>For within this hallowed ground, we have forged a bond of camaraderie and fellowship, a union of kindred spirits that transcends the mundane and the ordinary.</p>
<table>
<tr>
<th>Name</th>
<th>Info</th>
</tr>
<tr>
<td><a href="//git.willy.club">Gitea</a></td>
<td>A place to host your code</td>
</tr>
<tr>
<td><s><a href="#">Matrix Homeserver</a></s></td>
<td>Easy to use decentralized end-to-end encrypted chat<br><span style="color: red;">REGISTRATIONS FUCKED ATM</span></td>
</tr>
<tr>
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
<td>Voice chat application</td>
</tr>
</table>
<h2>Blog</h2>
<p>From the most arcane and obscure topics to the most pressing and consequential issues of our time, my website offers a cornucopia of insights, analyses, and perspectives that will leave you spellbound and awestruck.</p>
<ul> <ul>
<li> <li>
<i><?=date("d.m.Y")?></i> - <a href="/posts/0">Restoring my dignity</a> (forever draft)<br> <i><?=date("d.m.Y")?></i> - <a href="/posts/0">Restoring my dignity</a> (draft)<br>
I have fallen and I can't get up I have fallen and I can't get up
</li> </li>
<li>
<i>08.04.2023</i> - <a href="./img/IMG_20230408_190827.jpg">ULTRA REALISTIC MINECRAFT MOD!</a><br>
holy moly
</li>
</ul> </ul>
<h1>Stuffs</h1> <h2>Contact</h2>
<p>Should you desire to touch base and explore the possibilities of collaboration and partnership, I humbly request that you contact using one of the options seen below. Your touch would be most welcome, and I look forward to the possibility of embarking on a journey of mutual benefit and growth.</p>
<p>Matrix: <a href="https://matrix.to/#/@william:willy.club">@william:willy.club</a></p>
<img src="./img/cat-heart-letter.gif" alt="">
<h2>Cool Stuffs</h2>
<p> <p>
Check out this Check out this
@ -64,10 +74,22 @@
</p> </p>
<p> <p>
Lack motive, ambition aspirations and all that shit? Check out this video on <a href="https://www.youtube.com/watch?v=5WPB2u8EzL8">How to get motivated, sigma grindset motivational story</a>
<a href="https://www.youtube.com/watch?v=5WPB2u8EzL8">how to get motivated, sigma grindset motivational story</a>
</p> </p>
<blockquote>On the loom of language we weave our perceptions into the tapestry of comprehension.</blockquote>
<pre> Intelligence Chart
__
.' '.
You / \ Me
| _.' '._ |
_v__....---'' ''---....___________v___
</pre>
<h3>🤯🤯🤯</h3>
<p>funny</p>
<p>Amen</p> <p>Amen</p>
<?= view('footer') ?> <?= view('footer') ?>

File diff suppressed because one or more lines are too long