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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>名譽顧問團 - 慧妍雅集, WAI YIN ASSOCIATION </title>
<!-- css --> <?php include 'inc/headlinks.php'; ?> <!-- js --> <?php include 'inc/link-js.php'; ?> </head>
<body> <!-- header --> <?php include 'inc/navbar.php'; ?> <!-- end of header-->
<!-- breadcrumb -->
<div class="breadcrumb" style="background-image:url(../../assets/images/breadcrumbbg.jpg);">
<div class="breadcrumbWrapper text-center">
<p class="breadcrumbTitle mb-2 pt-4 h3 text-uppercase whiteFont">名譽顧問團 </p>
<div class="breadcrumbLink whiteFont">
<a href="index.php" class="whiteFont"> 首頁</a> / <span class="whiteFont">名譽顧問團 </span>
</div>
</div>
</div>
<section class="mainWrap">
<div class="container"> <div class="row rowMargin teamControl"> </div> </div> </section>
<?php /*?><section class="mainSmallWrapper"> <p class="h1 blueFont">Partner</P> <p class="text-justify mb-4">We have the privilege of working with a diverse range of organisations and enterprises. We view our clients and sponsors as our partners and work collaboratively with them to achieve results they can measure. </p> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> </div> </div> </section><?php */ ?> <!-- end #section -->
<!-- footer -->
<?php include 'inc/footer.php'; ?>
<script> $(function() { $.ajax({ url: "../../assets/json/team.json", type: "get",
data: {}, contentType: "application/json; charset=utf-8", dataType: "json", cache: false,
success: function(result) { let data = result.tc;
$.each(data, function(index, item) { $(`<div class="col-lg-6 mb-4"> <div class="boxshardow p-4 d-flex align-items-start h-100"> <div class="cardImgTeam"> <img src="../../assets/images/${item.img}" alt="${item.name}" class="img-fluid boxshardow"> </div> <div class="rowCardsDetail w-100"> <h3>${item.name}</h3> <p class="primaryColor">${item.title}</p> <p class="mb-0">${item.detail}</p> </div> </div>
</div>`).appendTo('.teamControl'); });
}, error: function(xhr, status, errorThrown) { console.log(errorThrown + "\n" + status + "\n" + xhr.statusTex); }, }); }); </script>
</body>
</html>
|