simple_blog/index.php
20xd6 8302028049 Update pages with changes to /common/
The building block PHP files have been moved.
2022-07-07 22:40:11 -04:00

16 lines
637 B
PHP

<?php
include ($_SERVER['DOCUMENT_ROOT'].'/common/php/header.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/menu.php');
?>
<article>
<h1 title="Homepage for <?php $site = $_SERVER['SERVER_NAME'];echo"$site";?>">Homepage</h1>
<p align="center">root@<?php $site = $_SERVER['SERVER_NAME'];echo"$site";?>:~#Hello and welcome to my website.<img src="common/imgs/cursor.gif" class="center_align" name="cursor" width="14" height="14" border="0"/></p>
<h2></h2>
<div class="body">
<p>A small colection of personal writings and projects.</p>
</div>
</article>
<?php
include ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php');
?>