tildechan/index.php

20 lines
283 B
PHP

<?php
$path = $_SERVER['DOCUMENT_ROOT'];
require_once($path . '/core/header.php');
require_once($path . '/core/footer.php');
display_header();
?>
<div style="
width: 400px;
margin: auto;
">
<h1>tildechan</h1>
<div class="box">
hello there!
</div>
<?php
display_footer();
?>