-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (20 loc) · 752 Bytes
/
index.php
File metadata and controls
25 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/* TODO:
* Verify and include all variables
*
*/
//Titles
$home_active="active"; $title = "Grow with Google | eCommerce project";
$sale_active="active"; $title = "Grow with Google | On Sale";
// Category Pages
$audio_active="active"; $title = "Grow with Google | "; //. $category;
// Single Product
$product_active="active"; $title = "Grow with Google | "; // . $product_name;
?>
<!-- Header and Nav -->
<?php require_once $_SERVER["DOCUMENT_ROOT"] . '/inc/header.php';?>
<?php require_once $_SERVER["DOCUMENT_ROOT"] . '/inc/nav.php';?>
<!-- Body of current page -->
<?php require_once $_SERVER["DOCUMENT_ROOT"] . '/product.php';?>
<!-- Footer -->
<?php require_once $_SERVER["DOCUMENT_ROOT"] . '/inc/footer.php';?>