-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproducts.php
More file actions
32 lines (27 loc) · 848 Bytes
/
Copy pathproducts.php
File metadata and controls
32 lines (27 loc) · 848 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
26
27
28
29
30
31
32
<?php
include("includes/template_frontend/page_link_config.php");
if (isset($_GET['page']) == "") {
$page = "1";
} else {
$page = $_GET['page'];
}
?>
<!DOCTYPE html>
<html>
<head>
<?php include("includes/template_frontend/head_tag_contents.php"); ?>
</head>
<body id="products">
<div class="modalx" style="display: none;"></div>
<input type="hidden" id="pageid" name="pageid" value="<?=$page?>">
<?php include("includes/template_frontend/navigation.php"); ?>
<div class="container">
<div id="gridContainer">
</div>
</div>
<?php include("includes/template_frontend/footer.php");?>
<?php include("includes/template_frontend/bottom_tag_contents.php"); ?>
<script src="js/main_site/products_search.js"></script>
<script src="js/main_site/backtotop.js"></script>
</body>
</html>