-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (38 loc) · 1.37 KB
/
index.php
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
33
34
35
36
37
38
39
40
41
42
43
44
<?php
$pageTitle = "Sweet Tees from the 80s";
$section = "home";
include('inc/header.php'); ?>
<div class="section banner">
<div class="wrapper">
<div id="80steesonebigpic_hype_container" style="opacity:0.5;position:relative;overflow:hidden;width:1400px;height:290px;">
<script type="text/javascript" charset="utf-8" src="80sTees-one-big-pic.hyperesources/80steesonebigpic_hype_generated_script.js?97683"></script>
</div>
<div class="button">
<a href="shirts.php">
<h2>Welcome to Sweet Tees From the 80’s</h2>
<p>Click to browse our Sweet Tees From the 80’s</p>
</a>
</div><!-- .button -->
</div><!-- .wrapper -->
</div><!-- .section banner -->
<div class="section shirts latest">
<div class="wrapper">
<h2>Sweet Tees From the 80’s Latest Shirts</h2>
<?php include("inc/products.php"); ?>
<ul class="products">
<?php
$total_products = count($products);
$position = 0;
$list_view_html = "";
foreach($products as $product_id => $product) {
$position = $position + 1;
if ($total_products - $position < 4) {
$list_view_html = get_list_view_html($product_id,$product) . $list_view_html;
}
}
echo $list_view_html;
?>
</ul>
</div><!-- .section shirts latest -->
</div><!-- .wrapper -->
<?php include('inc/footer.php') ?>