/var/www/hkosl.com/waiyin/en/view/trustees.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
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
<!DOCTYPE html>
<html lang="en-HK" prefix="og: http://ogp.me/ns#">

<head>
    <title>Board of Trustees - 慧妍雅集, 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">Board of Trustees
            </p>

            <div class="breadcrumbLink whiteFont">

                <a href="index.php" class="whiteFont"> Home</a> / <span class="whiteFont">Board of Trustees
                </span>

            </div>

        </div>

    </div>


    <section class="mainWrap">

        <div class="container">
            <div class="row rowMargin trusteesControl">
               

            </div>
            <h3 class="primaryColor mb-4 text-center">Roles and Responsibilities</h3>
            <div class="row responsibilityWrap">
                <div class="col-lg-3 mb-4">
                    <div class="btn-outline-primary active block h-100">
                    Long term planning and policies for Wai Yin Association
                    </div>
                </div>
                <div class="col-lg-3 mb-4">
                    <div class="btn-outline-primary active block h-100">
                    Manage Wai Yin Association's Endowment Fund
                    </div>
                </div>
                <div class="col-lg-3 mb-4">
                    <div class="btn-outline-primary active block h-100">
                    Manage Wai Yin Association's portfolio of investments
                    </div>
                </div>
                <div class="col-lg-3 mb-4">
                    <div class="btn-outline-primary active block h-100">
                    Manage Wai Yin Association's properties
                    </div>
                </div>
                <div class="col-lg-12 mb-4">
                    <div class="btn-outline-primary active block h-100">
                    Ensure compliance of rules and policies by members to protect Wai Yin Association's image and reputation
                    </div>
                </div>
            </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/trustees.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-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('.trusteesControl');
                    });



                },
                error: function(xhr, status, errorThrown) {
                    console.log(errorThrown + "\n" + status + "\n" + xhr.statusTex);
                },
            });
        });
    </script>



</body>

</html>