willy.club/views/pages/home.php

46 lines
1.1 KiB
PHP
Raw Normal View History

2022-12-13 16:59:47 +00:00
<?=view('templates/header', ['title' => 'Welcome to the willy club'])?>
2022-11-29 12:49:29 +00:00
2022-12-13 16:59:47 +00:00
<h1>Welcome to the willy club</h1>
<p>Theres more than just willies! This site hosts some of my personal projects and services for me and acquaintances.</p>
<table>
<tr>
<th>Name</th>
<th>Status</th>
</tr>
<tr>
<td><a href="//element.willy.club">Element</a></td>
<td>Online</td>
</tr>
<tr>
<td><a href="//git.willy.club">Gitea</a></td>
<td>Online</td>
</tr>
<tr>
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
<td>Online</td>
</tr>
<tr>
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
<td>Unknown</td>
</tr>
</table>
<h1>Contact</h1>
<p>You can find me on Matrix at <a href="#">@william:willy.club</a></p>
<h1>Webring</h1>
<p>Check out any of these other websites</p>
<p>... nothingness</p>
<p>Well maybe there will be a webring here in the future.</p>
<h1>I don't know what more to put here</h1>
<p>This is just some text to make the page feel more complete? Yeah</p>
2022-11-29 12:49:29 +00:00
<?=view('templates/footer')?>