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
|
<?php if (empty($_GET['path']) || !in_array($_GET['path'], ['2019_ceremony'])) header('Location:photo_list.php?year=2019_ceremony'); ?> <!DOCTYPE html> <html dir="ltr" lang="zh-HK">
<head> <?php include 'inc/metahead.php';?> <title>香港星級品牌 - 香港中小型企業聯合會</title> </head>
<body class="stretched">
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php include 'inc/header.php';?> <section id="page-title" style="background-image: url('../images/banner_sub.jpg?v=2019');" class="background-title"> <div class="container clearfix"> <h1 class="colorFFF m0">活動相片</h1> <ol class="breadcrumb"> <li><a href="#">主頁</a></li> <li class="active">活動相片</li> </ol> </div>
</section>
<!-- Content ============================================= --> <section id="content">
<div class="content bg_section_contain">
<div class="container clearfix">
<div class="row clearfix mt-40"> <!-- Portfolio start --> <div id="portfolio" data-lightbox="gallery" class="portfolio grid-container portfolio-3 portfolio-masonry portfolio-nomargin portfolio-full clearfix"> <?php if ($_GET['path'] == '2019_ceremony') { ?> <?php for ($i = 1; $i <= 282; $i++ ) { ?> <article class="portfolio-item"><div class="portfolio-image"><a href="../images/photo/2019_ceremony/<?php echo $i; ?>.jpg" data-lightbox="gallery-item"><img src="../images/photo/2019_ceremony/<?php echo $i; ?>.jpg"></a></div></article> <?php } ?> <?php } ?> </div> </div>
</div>
</section><!-- #content end -->
<?php include 'inc/footer.php';?>
</div><!-- #wrapper end -->
<!-- Go To Top ============================================= --> <div id="gotoTop" class="icon-angle-up"></div>
<!-- External JavaScripts ============================================= --> <script type="text/javascript" src="../js/jquery.js"></script> <script type="text/javascript" src="../js/plugins.js?v=1.22"></script>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js?v=1.22"></script> <script type="text/javascript"> $('nav ul > li.lv01:nth-child(6)').addClass('current'); </script>
</body>
</html>
|