site/index.php

18 lines
570 B
PHP

<?php
$title = "Home | ~forero";
$language = "en";
include "layout/header.php";
?>
<div id="content">
<h1>Home</h1>
<img src="https://robohash.org/forero.png?set=set5" alt="">
<p>Hello, welcome to my small corner of the internet, my name is Santiago Forero, I like reading books, playing chess, going to the gym and love eating fruits.</p>
<li>Email: <a href="mailto:forero@disroot.org">forero at disroot dot org</a></li>
<li>IRC: <b>forero</b> on IRCNow</li>
</div>
<?php include "layout/footer.php"; ?>