added a basic title to the main page

This commit is contained in:
hayden 2019-06-25 23:48:17 -05:00
parent aa21255421
commit 0fc08647c0
1 changed files with 10 additions and 12 deletions

View File

@ -1,19 +1,17 @@
<?php
# - # - # - # - # - # - # - #
# #
# ~chan #
# - #
# by stilbruch #
# #
# - # - # - # - # - # - # - #
$path = $_SERVER['DOCUMENT_ROOT'];
include($path . '/core/header.php');
echo "Hello World!1!"
require($path . '/core/header.php');
?>
<div style="
width: 400px;
margin: auto;
">
<h1>tildechan</h1>
<div class="box">
hello there!
</div>
<?php
include($path . '/core/footer.php');
require($path . '/core/footer.php');
# the end...
?>