/var/www/hkosl.com/waiyin/tc/view/executive.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
159
160
<!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 align-items-center rowMargin executivesControl">


            </div>
            <h3 class="primaryColor mb-4 text-center">角色及責任</h3>
           

            <table class="table">
    <tbody>
        <tr>
            <th>行政</th>
            <td>管理辦事處及行政人員,包括計劃預算</td>
        </tr>
        <tr>
            <th>籌款</th>
            <td>聯絡及安排商界及私人基金贊助支持籌款活動</td>
        </tr>
        <tr>
            <th>統籌善款資源</th>
            <td>搜集、研究及選擇受助團體</td>
        </tr>
        <tr>
            <th>公關及媒體</th>
            <td>公共關係、媒體關係及賓客事務</td>
        </tr>
        <tr>
            <th>會籍</th>
            <td>招募會員及管理會籍,建立及推動團隊精神</td>
        </tr>
        <tr>
            <th>網頁</th>
            <td>管理及更新網頁內容</td>
        </tr>
        <tr>
            <th>社會服務</th>
            <td>組織探訪慈善服務中心及支持社會公益慈善活動</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.tc;


                    $.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>