17 lines
309 B
PHP
17 lines
309 B
PHP
<?php
|
|
|
|
define('PAGE_TITLE', 'Shop');
|
|
define('ACTIVE_MENUITEM', 'shop');
|
|
|
|
require('includes/header.php');
|
|
?>
|
|
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<div class="container-fluid">
|
|
<a href="./"><button type="button" class="btn btn-primary">
|
|
Go back to Home
|
|
</button></a>
|
|
</div>
|
|
<?php require('includes/footer.php'); ?>
|