-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
70 lines (63 loc) · 1.73 KB
/
gallery.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
<style type="text/css">
#background {
width: 100%;
height: 100%;
padding:1px;
}
#background .stretch {
width: 100%;
height: 100%;
border: 1px solid #ddd;
}
</style>
<div id="accom-title" >
<div class="pagetitle">
<h1 ><?php print $title ; ?>
</h1>
</div>
</div>
<div id="bread">
<ol class="breadcrumb">
<li><a href="<?php echo WEB_ROOT ;?>index.php">Home</a>
</li>
<li class="active"><?php print $title ; ?></li>
</ol>
</div>
<div id="main" class="site-main clr">
<div id="primary" class="content-area clr">
<div id="content-wrap">
<div class="row">
<div class="col-lg-4">
<div id="background">
<img class="stretch" src="<?php echo WEB_ROOT; ?>images/SlideShow/images.jpg">
</div>
</div>
<div class="col-lg-4">
<div id="background">
<img class="stretch img-hover" src="<?php echo WEB_ROOT; ?>images/SlideShow/header-bg1.jpg">
</div>
</div>
<div class="col-lg-4">
<div id="background">
<img class="stretch img-hover" src="<?php echo WEB_ROOT; ?>images/SlideShow/images.jpg">
</div>
</div>
<div class="col-lg-4">
<div id="background">
<img class="stretch img-hover" src="<?php echo WEB_ROOT; ?>images/SlideShow/header-bg1.jpg">
</div>
</div>
<div class="col-lg-4">
<div id="background">
<img class="stretch img-hover" src="<?php echo WEB_ROOT; ?>images/SlideShow/images.jpg">
</div>
</div>
<div class="col-lg-4">
<div id="background">
<img class="stretch img-hover" src="<?php echo WEB_ROOT; ?>images/SlideShow/header-bg1.jpg">
</div>
</div>
</div>
</div>
</div>
</div>