40 lines
965 B
PHP
40 lines
965 B
PHP
<?=view('templates/header', ['title' => 'Welcome to the willy club'])?>
|
|
|
|
<h1>Welcome to the willy club</h1>
|
|
|
|
<p>Theres more than just willies! This site hosts some services for me and friends.</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="//git.willy.club">Gitea</a></td>
|
|
<td>Unknown</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
|
|
<td>Unknown</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
|
|
<td>Unknown</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h1>Contact</h1>
|
|
|
|
<p>Send me a nice and positive message at <a href="#">@william:willy.club</a></p>
|
|
|
|
<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>
|
|
|
|
<?=view('templates/footer')?>
|