Website/view/home.php

22 lines
584 B
PHP
Raw Normal View History

2023-04-08 22:08:53 +00:00
<?= view('header', ['is_index' => true, 'title' => 'Willy\'s Website']) ?>
2023-03-21 17:23:14 +00:00
2023-04-08 22:08:53 +00:00
<h1>Willy's Website</h1>
2023-05-02 00:13:29 +00:00
<p><em>More than just willies! Most of the time.</em></p>
2023-04-08 22:08:53 +00:00
2023-05-02 00:13:29 +00:00
<p>Welcome to my webserver! Your bits have passed through the pipes that make up the internet all the way to my laptop located in South Norway, Kristiansand.</p>
2023-04-08 22:08:53 +00:00
2023-05-02 00:13:29 +00:00
<h2>Now, where would you like to go?</h2>
2023-03-21 17:23:14 +00:00
<ul>
<li>
2023-05-02 00:13:29 +00:00
<p><a href="//git.willy.club">Gitea</a></p>
2023-03-21 17:23:14 +00:00
</li>
2023-04-08 22:08:53 +00:00
<li>
2023-05-02 00:13:29 +00:00
<p><a href="mumble://mumble.willy.club">Mumble</a></p>
2023-04-08 22:08:53 +00:00
</li>
2023-03-21 17:23:14 +00:00
</ul>
2023-05-02 00:13:29 +00:00
<p><img src="<?=url('/img/laptop.jpg')?>" alt=""></p>
2023-03-30 21:58:54 +00:00
2023-03-21 17:23:14 +00:00
<?= view('footer') ?>