37 lines
787 B
PHP
37 lines
787 B
PHP
<?= view('header', ['title' => 'Home']) ?>
|
|
|
|
<h1>Service</h1>
|
|
<p>This space hosts some services for me and friends.</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="//git.willy.club">Gitea</a><br>
|
|
A place to host your code
|
|
</li>
|
|
<li>
|
|
<a href="#">Matrix homeserver</a><br>
|
|
<span style="color: red">Registrations closed for the time being maybe forever</span>
|
|
<br>
|
|
Easy to use end-to-end encrypted comms
|
|
</li>
|
|
<li>
|
|
<a href="mumble://mumble.willy.club">Mumble</a><br>
|
|
Voice chat application
|
|
</li>
|
|
</ul>
|
|
|
|
<h1>Touch</h1>
|
|
|
|
<p>Matrix: <a href="https://matrix.to/#/@william:willy.club">@william:willy.club</a></p>
|
|
|
|
|
|
<h1>Blog</h1>
|
|
|
|
<ul>
|
|
<li>
|
|
<?=date("d.m.Y")?> - <a href="/posts/0">Restoring my dignity</a> (forever draft)<br>
|
|
I have fallen and I can't get up
|
|
</li>
|
|
</ul>
|
|
|
|
<?= view('footer') ?>
|