12 lines
259 B
PHP
12 lines
259 B
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>
|