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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
<!DOCTYPE html>
<html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head>
<title>EXCLAND - Blog list</title>
<meta name="keywords" content="EXCLAND">
<meta property="og:description" content="EXCLAND" /> <!-- css -->
<?php include 'inc/headlinks.php'; ?>
<!-- js -->
<?php include 'inc/link-js.php'; ?>
</head>
<body class="blueTheme">
<!-- header --> <div class="subPageNav"> <?php include 'inc/navbar_nologin.php'; ?> </div> <!-- end of header-->
<!-- breadcrumb --> <div class="breadcrumbWrapper_nonscroll grayDeepBgColor"> <div class="container"> <a href="index.php" class="link"> 首頁</a> > <span> 博客列表</span> </div> </div>
<section class="productBoxWrapper"> <div class="container"> <div class="row"> <div class="col-lg-3 col-sm-6"> <div class="blogItem blogCard"> <div class="wrapper" style="background-image: url(../assets/images/blog/blog01.jpg);"> <div class="header"> <div class="date"> <span class="day">12</span> <span class="month">Aug</span> <span class="year">2016</span> </div>
</div> <div class="data"> <div class="content"> <span class="author">Jane Doe</span> <p class="title ellipsis2"><a href="blogdetail.php">Stranger Things: The sound of the Upside Down</a></p> <p class="text ellipsis2">The antsy bingers of Netflix will eagerly anticipate the digital release of the Survive soundtrack, out today.</p> <a href="blogdetail.php" class="nowrap button">Read more</a> </div> </div> </div> </div> </div> <div class="col-lg-3 col-sm-6"> <div class="blogItem blogCard"> <div class="wrapper" style="background-image: url(../assets/images/blog/blog02.jpg);"> <div class="header"> <div class="date"> <span class="day">12</span> <span class="month">Aug</span> <span class="year">2016</span> </div>
</div> <div class="data"> <div class="content"> <span class="author">Jane Doe</span> <p class="title ellipsis2"><a href="blogdetail.php">iPhone 13 全系列尺寸全流出,超巨型鏡頭配縮小的瀏海屏!</a></p> <p class="text ellipsis2">距離 iPhone 13 系列發布近在眼前,網上消息已經越來越接近真相,有的甚至讓網友提前「試玩」新機。而日前,一個為 iPhone 13 系列設計外殼的配件製造商洩露了一組圖片,向我們展示了 iPhone 13 的外觀,主要展示出機身尺寸和相機模塊的變化。</p> <a href="blogdetail.php" class="nowrap button">詳細內容</a> </div> </div> </div> </div> </div> <div class="col-lg-3 col-sm-6"> <div class="blogItem blogCard"> <div class="wrapper" style="background-image: url(../assets/images/blog/blog01.jpg);"> <div class="header"> <div class="date"> <span class="day">12</span> <span class="month">Aug</span> <span class="year">2016</span> </div>
</div> <div class="data"> <div class="content"> <span class="author">Jane Doe</span> <p class="title ellipsis2"><a href="blogdetail.php">Stranger Things: The sound of the Upside Down</a></p> <p class="text ellipsis2">The antsy bingers of Netflix will eagerly anticipate the digital release of the Survive soundtrack, out today.</p> <a href="blogdetail.php" class="nowrap button">Read more</a> </div> </div> </div> </div> </div> <div class="col-lg-3 col-sm-6"> <div class="blogItem blogCard"> <div class="wrapper" style="background-image: url(../assets/images/blog/blog01.jpg);"> <div class="header"> <div class="date"> <span class="day">12</span> <span class="month">Aug</span> <span class="year">2016</span> </div>
</div> <div class="data"> <div class="content"> <span class="author">Jane Doe</span> <p class="title ellipsis2"><a href="blogdetail.php">Stranger Things: The sound of the Upside Down</a></p> <p class="text ellipsis2">The antsy bingers of Netflix will eagerly anticipate the digital release of the Survive soundtrack, out today.</p> <a href="blogdetail.php" class="nowrap button">Read more</a> </div> </div> </div> </div> </div> </div>
</div>
</section>
<!-- end #section -->
<!-- footer -->
<?php include 'inc/footer.php'; ?>
</body>
</html>
|