9iron/.templates/template.php

20 lines
460 B
PHP

<!DOCTYPE html>
<html>
<head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/meta.html';?>
<title>9iron</title>
</head>
<body>
<div class="container">
<?php include $_SERVER['DOCUMENT_ROOT'].'/header.html';?>
<div class="content">
<div class="section">
<h2>Changeme</h2>
</div>
</div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/sidebar.html';?>
<?php include $_SERVER['DOCUMENT_ROOT'].'/footer.html';?>
</div>
</body>
</html>