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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>Executive Committee - 慧妍雅集, 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">Executive Committee </p>
<div class="breadcrumbLink whiteFont">
<a href="index.php" class="whiteFont"> Home</a> / <span class="whiteFont">Executive Committee </span>
</div>
</div>
</div>
<section class="mainWrap">
<div class="container"> <div class="row align-items-center rowMargin executivesControl">
</div> <h3 class="primaryColor mb-4 text-center">Roles and Responsibilities</h3>
<table class="table"> <tbody> <tr> <th>Administration</th> <td>Manage office and administrative staff including planning the budget</td> </tr> <tr> <th>Fundraiser</th> <td>Identify donors and sponsors for fundraising</td> </tr> <tr> <th>Researcher</th> <td>Research and identify beneficiary recipients</td> </tr> <tr> <th>PR and Media</th> <td>Manage the publicity, media relations and guest management</td> </tr> <tr> <th>Membership</th> <td>Recruit and manage membership; team building to foster team spirit</td> </tr> <tr> <th>Website</th> <td>Manage the website and contents</td> </tr> <tr> <th>Community Service</th> <td> Organize visits to charity centres and to support charitable activities in the community</td> </tr> </tbody> </table>
</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/executive.json", type: "get",
data: {}, contentType: "application/json; charset=utf-8", dataType: "json", cache: false,
success: function(result) { let data = result.en;
$.each(data, function(index, item) { $(` <div class="col-lg-6 mb-4">
<div class="boxshardow p-4 d-flex align-items-center"> <div> <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('.executivesControl'); });
}, error: function(xhr, status, errorThrown) { console.log(errorThrown + "\n" + status + "\n" + xhr.statusTex); }, }); }); </script>
</body>
</html>
|