9iron/.templates/template.php

17 lines
386 B
PHP
Raw Normal View History

2020-08-22 20:14:22 -05:00
<!DOCTYPE html>
<html>
<head>
2020-08-22 20:18:07 -05:00
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
2020-08-22 20:14:22 -05:00
<title>9iron</title>
</head>
<body>
2020-08-22 20:18:07 -05:00
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<div class="content">
<div class="section">
<h1>Changeme</h1>
2020-08-22 20:14:22 -05:00
</div>
</div>
2020-08-22 20:18:07 -05:00
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
2020-08-22 20:14:22 -05:00
</body>
</html>