simple_blog/index.php
20xd6 6b8157f551 Initial Commit
Add the basic structure of the site.
2022-06-28 15:27:58 -04:00

16 lines
625 B
PHP

<?php
include ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/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/footer.php');
?>