Website/view/home.php

22 lines
584 B
PHP

<?= view('header', ['is_index' => true, 'title' => 'Willy\'s Website']) ?>
<h1>Willy's Website</h1>
<p><em>More than just willies! Most of the time.</em></p>
<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>
<h2>Now, where would you like to go?</h2>
<ul>
<li>
<p><a href="//git.willy.club">Gitea</a></p>
</li>
<li>
<p><a href="mumble://mumble.willy.club">Mumble</a></p>
</li>
</ul>
<p><img src="<?=url('/img/laptop.jpg')?>" alt=""></p>
<?= view('footer') ?>