added html framework?

This commit is contained in:
Beth Parker 2017-10-30 22:23:08 -05:00
parent 894077250a
commit 022dad7667
2 changed files with 24 additions and 10 deletions
public
authenticated
unauthenticated

View file

@ -1,5 +1,12 @@
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",false);
include "../../includes/layout.php";
?>
<html>
<head>
<title>Bob's Auto Parts</title>
</head>
<body>
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",false);
include "../../includes/layout.php";
?>
</body>
</html>

View file

@ -1,5 +1,12 @@
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",true);
include "../../includes/layout.php";
?>
<html>
<head>
<title>Bob's Auto Parts</title>
</head>
<body>
<?php
include "../../includes/retrieve_data.php";
$data = retrieve_data("../../../sitedata.yml",true);
include "../../includes/layout.php";
?>
</body>
</html>