personal-website/docs/www/random/index.php

21 lines
387 B
PHP

<?php
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
display_header("Random tools");
?>
<article>
<h2>
A collection of random tools I thought could be useful.
</h2>
<ul>
<li>
<a href="http://www.zdenekborovec-dev.cz/random/conversions">Unit conversions</a>
</li>
</ul>
</article>
<?php
include_once($COMMONS."/footer.php");
?>