-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesktop.php
executable file
·54 lines (36 loc) · 1.38 KB
/
desktop.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
<?php
/**
* desktop
*
* @package custom
*
*/
?>
<?php $this->need('header.php'); ?>
<div class="mainbody gallery-container">
<div style="border-bottom: 1px solid #96c2f1; ">
<ul class="list-inline gallery-link" style="padding-top: 20px;">
<li><button class="btn btn-default" type="button"><a href="gallery.html">Gallery</a></button></li>
<li><button class="btn btn-default active" type="button"><a href="desktop.html">Desktop</a></button></li>
<li><button class="btn btn-default" type="button"><a href="guangxi.html">Guangxi</a></button></li>
<li><button class="btn btn-default" type="button"><a href="wind.html">风之谷</a></button></li>
<li><button class="btn btn-default" type="button"><a href="rainy.html">雨之林</a></button></li>
<li><button class="btn btn-default" type="button"><a href="frost.html">霜之城</a></button></li>
</ul>
</div>
<div class="tz-gallery">
<div class="row">
<?php $x=1; ?>
<?php while($x<50): ?>
<?php $imgurl='http://oxx624c2r.bkt.clouddn.com/'.$x.'.jpg' ?>
<div class="col-sm-6 col-md-4">
<a class="lightbox" href="<?php echo $imgurl ?>">
<img src="<?php echo $imgurl ?>">
</a>
</div>
<?php $x++; ?>
<?php endwhile; ?>
</div>
</div>
</div>
<?php $this->need('footer.php'); ?>