-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
105 lines (102 loc) · 3.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php include_once ($_SERVER['DOCUMENT_ROOT']."/component/header.php")?>
<div id="main" class="container">
<div class="banner all-center">
Event Banner
</div>
<div class="search-wrapper">
<input type="text" placeholder="Type search terms">
<button>
<img src="/static/img/search-icon.svg" alt="search">
</button>
</div>
<div class="cate-wrapper">
<ul>
<li>
<a href="/item/top_list.php">
<img src="/static/img/category/best.svg" alt="best">
</a>
<p>Top Item</p>
</li>
<li>
<a href="/item/nintendo_list.php">
<img src="/static/img/category/nintendo.svg" alt="nintendo">
</a>
<p>Nintendo</p>
</li>
<li>
<a href="#">
<img src="/static/img/category/playstation.svg" alt="playstation">
</a>
<p>PlayStation</p>
</li>
<li>
<a href="#">
<img src="/static/img/category/auction.svg" alt="auction">
</a>
<p>Auction</p>
</li>
<li>
<a href="#">
<img src="/static/img/category/xbox.svg" alt="xbox">
</a>
<p>XBOX</p>
</li>
<li>
<a href="#">
<img src="/static/img/category/pc.svg" alt="pc">
</a>
<p>PC</p>
</li>
</ul>
</div>
<div class="recommend-item-wrapper">
<p>Recommend for SJSU</p>
<div class="item-list">
<ul>
<?php
$arr = getData()->data;
for ($i = 0; $i < 8; $i++) {
?>
<li>
<div class="item">
<div class="img-wrapper">
<a href="<?php echo $arr[$i]->url ?>">
<img src="<?php echo $arr[$i]->img ?>" alt="">
</a>
</div>
<div class="like-wrapper" onclick="toggleLike(this)">
<img src="/static/img/like_empty.svg" alt="like">
</div>
<div class="time-wrapper">
<img src="/static/img/time.svg" alt="time">
<span><?php echo $arr[$i]->date ?></span>
</div>
<a href="<?php echo $arr[$i]->url ?>">
<div class="title">
<?php echo $arr[$i]->title ?>
</div>
<div class="price">
<?php echo $arr[$i]->price ?>
</div>
</a>
</div>
</li>
<?php
}
?>
</ul>
</div>
</div>
</div>
<?php include_once ($_SERVER['DOCUMENT_ROOT']."/component/navigation.php")?>
<style>
#header .back {
display: none;
}
#header .new {
display: block;
}
</style>
<script>
activeNavigation('home');
</script>