Fix template

This commit is contained in:
Salt 2020-08-22 20:18:07 -05:00
parent 497f19a979
commit 5b6d3017ba
1 changed files with 6 additions and 9 deletions

View File

@ -1,19 +1,16 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/meta.html';?> <?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
<title>9iron</title> <title>9iron</title>
</head> </head>
<body> <body>
<div class="container"> <?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<?php include $_SERVER['DOCUMENT_ROOT'].'/header.html';?> <div class="content">
<div class="content"> <div class="section">
<div class="section"> <h1>Changeme</h1>
<h2>Changeme</h2>
</div>
</div> </div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/sidebar.html';?>
<?php include $_SERVER['DOCUMENT_ROOT'].'/footer.html';?>
</div> </div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
</body> </body>
</html> </html>