9iron/index.php

16 lines
380 B
PHP
Raw Normal View History

2020-08-16 04:02:16 -05:00
<!DOCTYPE html>
<html>
<head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
2020-08-16 04:48:11 -05:00
<title>9iron</title>
2020-08-16 04:02:16 -05:00
</head>
<body>
2020-08-16 04:48:11 -05:00
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<div class="content">
<h1>This Is a Test</h1>
<p>It has to be.</p>
</div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
2020-08-16 04:02:16 -05:00
</body>
</html>