Add templates

This commit is contained in:
Salt 2020-08-22 20:14:22 -05:00
parent de7f73f076
commit 497f19a979
1 changed files with 19 additions and 0 deletions

19
.templates/template.php Normal file
View File

@ -0,0 +1,19 @@
<!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>