willy.club/views/pages/home.php

40 lines
965 B
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>
2022-12-18 14:09:40 +00:00
<p>Theres more than just willies! This site hosts some services for me and friends.</p>
2022-12-13 16:59:47 +00:00
<table>
<tr>
<th>Name</th>
<th>Status</th>
</tr>
<tr>
<td><a href="//git.willy.club">Gitea</a></td>
2022-12-18 14:09:40 +00:00
<td>Unknown</td>
2022-12-13 16:59:47 +00:00
</tr>
<tr>
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
2022-12-18 14:09:40 +00:00
<td>Unknown</td>
2022-12-13 16:59:47 +00:00
</tr>
<tr>
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
<td>Unknown</td>
</tr>
</table>
<h1>Contact</h1>
2022-12-18 14:09:40 +00:00
<p>Send me a nice and positive message at <a href="#">@william:willy.club</a></p>
2022-12-13 16:59:47 +00:00
<h1>Webring</h1>
<p>Check out any of these other websites</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')?>