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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
|
<!DOCTYPE html> <html lang="en-HK">
<head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0"> <title>Events | Lions Clubs International District 303 - Hong Kong & Macao, China</title> <link rel="shortcut icon" href="../img/pagelogo.png">
<!-- fonts --> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="../css/myicons.css?version=1.1"/> <!-- slick --> <link rel="stylesheet" type="text/css" href="../css/slick.css?version=1.1"/> <link rel="stylesheet" type="text/css" href="../css/slick-theme.css?version=1.1"/>
<!-- lightslider --> <link rel="stylesheet" href="../css/lightslider.css?version=1.1"/>
<link rel="stylesheet" href="../css/style.css?version=1.1"> <link rel="stylesheet" href="../css/responsive.css?version=1.1"> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-45123111-29"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());
gtag('config', 'UA-45123111-29'); </script> </head>
<body> <!-- start wrapper --> <div class="wrapper">
<!-- start header --> <!-- topbar --> <div class="topbar"> <div class="fl"></div> <div class="fr"> <a href="https://mylci.lionsclubs.org/Login.aspx?l=ZH" target="_blank"><img src="../img/topbar_myLCI.png"> MyLCI Login</a> <a href="comingsoon.php"><img src="../img/topbat_login.png"> Member Login</a> <a href="download.php"><img src="../img/topbat_download.png"> Download</a> <a href="https://www.facebook.com/pg/photoshare/photos/?ref=page_internal" target="_blank"><img src="../img/topbat_facebook.png"></a> </div> <div class="clear"></div> </div> <!-- end of topbar -->
<?php include 'header_en.php';?> <!-- end of header --> <!-- end of location --> <div class="web_locations"> <div class="container"> <a href="index.php"><i data-icon="B"></i>Home</a>/<a href="#" class="active">Events</a> </div> </div> <div class="clear"></div>
<!-- calendar --> <div class="calendar_options_container"> <div class="container"> <div class="calendar_options"> <!-- <div class="options"> <h4>Date</h4> <input type="date" value="2018-05-23" class="en"> </div>
<div class="options"> <h4>Search</h4> <input type="text" placeholder="Events" class="zh"> </div>
<div class="options submit"> <h4> </h4> <input type="submit" value="Search Events" class="zh"> </div> -->
<div class="viewas mt-20"> <button class="zh active" id="calendar_btn">Months</button> <button class="zh" id="viewlist_btn">Event List</button> </div>
<div class="clear"></div> </div>
<div class="clear"></div> </div> </div>
<div class="box-padding4020" id="event_calendar"> <div class="container"> <div class="calendar_table_container"> <div id='calendar'></div> <div class="clear"></div> </div> </div> </div>
<!-- end of calendar -->
<div class="clear"></div>
<div class="box-padding4020" id="event_listview"> <div class="container"> <!-- list view --> <div class="listview"> <div class="listview_title"> <h2>2018年八月活動 </h2> <!--<button class="previous_months"><span>«</span> 七月</button> <button class="next_months">九月 <span>»</span></button>--> </div> <div class="event"> <div class="event_date"><b>2018-08-04</b></div> <div class="event_content"> <div class="event_title"> 2018-2019年度屬會職員領導才能工作坊 </div> <div class="event_details"> 屬會 : 國際獅子總會港澳三O三區 <br> 活動名稱 : 2018-2019年度屬會職員領導才能工作坊<br> 日期 : 2018年8月4-5日<br> 時間 : <br> 地點 : 澳門喜來登金沙城中心大酒店<br> 出席 : All Lions </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-07</b></div> <div class="event_content"> <div class="event_title"> 香港深水埗獅子會 - 「第十屆職員就職典禮 暨 慈善籌款晚宴」 </div> <div class="event_details"> 屬會 : 香港深水埗獅子會<br> 活動名稱 : 「第十屆職員就職典禮 暨 慈善籌款晚宴」<br> 日期 : 2018年8月7日<br> 時間 : 晚上7時<br> 地點 : 帝京酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-10</b></div> <div class="event_content"> <div class="event_title"> 2nd New Members Orientation Semianr </div> <div class="event_details"> 屬會 : 國際獅子總會港澳三O三區 <br> 活動名稱 : 2nd New Members Orientation Semianr<br> 日期 : 2018年8月10日<br> 時間 : 晚上7時<br> 地點 : District 303 Office<br> 出席 : All Lions </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-11</b></div> <div class="event_content"> <div class="event_title"> Joint Installation Ceremony of Office Bearers 2018 - 2019 </div> <div class="event_details"> 屬會 : 國際獅子總會港澳三O三區 <br> 活動名稱 : Joint Installation Ceremony of Office Bearers 2018 - 2019<br> 日期 : 2018年8月11日<br> 時間 : 晚上7時<br> 地點 : HKCEC Grand Hall<br> 出席 : All Lions </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-12</b></div> <div class="event_content"> <div class="event_title"> 香港星光獅子會 - 《星動力量》青年體育培訓計劃啟動禮 暨《逆流大叔》口述電影體驗欣賞會 </div> <div class="event_details"> 屬會 : 香港星光獅子會 <br> 活動名稱 :《星動力量》青年體育培訓計劃啟動禮 暨《逆流大叔》口述電影體驗欣賞會<br> 日期 : 2018年8月12日<br> 時間 : 早上11時至下午1時<br> 地點 : UA Cine Times<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-13</b></div> <div class="event_content"> <div class="event_title"> 2nd Special Cabinet Meeting 2018-2019 </div> <div class="event_details"> 屬會 : 國際獅子總會港澳三O三區 <br> 活動名稱 : 2nd Special Cabinet Meeting 2018-2019<br> 日期 : 2018年8月13日<br> 時間 : 晚上7時<br> 地點 : District 303 Office<br> 出席 : Cabinet Officers </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-16</b></div> <div class="event_content"> <div class="event_title"> 屯門獅子會 - 「2018-2019年度新職員就職典禮」 </div> <div class="event_details"> 屬會 : 屯門獅子會 <br> 活動名稱 :「2018-2019年度新職員就職典禮」<br> 日期 : 2018年8月16日<br> 時間 : 晚上7時<br> 地點 : Hotel Icon<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-18</b></div> <div class="event_content"> <div class="event_title"> Lions Club of Central - 「Health Forum for Special Olympics」 </div> <div class="event_details"> 屬會 : Lions Club of Central <br> 活動名稱 :「Health Forum for Special Olympics」<br> 日期 : 2018年8月18日<br> 時間 : 下午1時至4時<br> 地點 : 保良局陳百強伉儷學校<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-18</b></div> <div class="event_content"> <div class="event_title"> 鑪峯獅子會 - 「43周年紀念 暨 2018-2019年度就職典禮」 </div> <div class="event_details"> 屬會 : 鑪峯獅子會 <br> 活動名稱 :「43周年紀念 暨 2018-2019年度就職典禮」<br> 日期 : 2018年8月18日<br> 時間 : 晚上7時<br> 地點 : 香港富豪酒店宴會廳<br> 出席 : By Invitation </div> </div> </div>
<div class="event"> <div class="event_date"><b>2018-08-19</b></div> <div class="event_content"> <div class="event_title"> 香港中華傳統文化獅子會 - 「2018至2019年度新職員就職典禮」 </div> <div class="event_details"> 屬會 : 香港中華傳統文化獅子會 <br> 活動名稱 : 「2018至2019年度新職員就職典禮」<br> 日期 : 2018年8月19日<br> 時間 : T.B.A.<br> 地點 : T.B.A.<br> 出席 : By Invitation </div> </div> </div>
<div class="event"> <div class="event_date"><b>2018-08-20</b></div> <div class="event_content"> <div class="event_title"> 1st Joint Advisory Zone Meeting </div> <div class="event_details"> 活動名稱 : 1st Joint Advisory Zone Meeting<br> 日期 : 2018年8月20日<br> 時間 : 晚上7時00分<br> 地點 : District 303 Office<br> 出席 : Cabinet Officers, Presidents & Secertaries </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-20</b></div> <div class="event_content"> <div class="event_title"> 1st Quarterly Cabinet Meeting </div> <div class="event_details"> 活動名稱 : 1st Joint Advisory Zone Meeting<br> 日期 : 2018年8月20日<br> 時間 : 晚上7時30分<br> 地點 : District 303 Office<br> 出席 : Cabinet Officers, PIP, PIDs, PDGs, Dist. Comm, Chairpersons & Vice Chairpersons, Dist. Rep., The Lion - Publication Chairperson, Lions Affiliated Organizations, & Club Presidents </div> </div> </div>
<div class="event"> <div class="event_date"><b>2018-08-21</b></div> <div class="event_content"> <div class="event_title"> 香港半山獅子會 - 「2018-2019年度就職典禮」 </div> <div class="event_details"> 屬會 : 香港半山獅子會<br> 活動名稱 : 「2018-2019年度就職典禮」<br> 日期 : 2018年8月21日<br> 時間 : T.B.A.<br> 地點 : T.B.A.<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-24</b></div> <div class="event_content"> <div class="event_title"> 香港北區獅子會 - 馬清岳紀念盃 </div> <div class="event_details"> 屬會 : 香港北區獅子會<br> 活動名稱 : 香港北區獅子會 - 馬清岳紀念盃<br> 日期 : 2018年8月24日<br> 時間 : 上午11時48分<br> 地點 : 粉嶺高爾夫球場-Eden Course<br> 出席 : All Lions </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-24</b></div> <div class="event_content"> <div class="event_title"> 香港新民獅子會 - 樂在新民-香港新民獅子會13週年晚宴 </div> <div class="event_details"> 屬會 : 香港新民獅子會<br> 活動名稱 : 樂在新民-香港新民獅子會13週年晚宴<br> 日期 : 2018年8月24日<br> 時間 : 下午7時30分<br> 地點 : 龍堡國際酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-25</b></div> <div class="event_content"> <div class="event_title"> 青年獅子區職員 暨 屬會職員聯合就職典禮 </div> <div class="event_details"> 屬會 : 青年獅子區會<br> 活動名稱 : 青年獅子區職員 暨 屬會職員聯合就職典禮<br> 日期 : 2018年8月25日<br> 時間 : 下午2時<br> 地點 : 九龍灣國際展覽中心 展貿廳2(3/F)<br> 出席 : By Invitation </div> </div> </div>
<div class="event"> <div class="event_date"><b>2018-08-25</b></div> <div class="event_content"> <div class="event_title"> 九龍塘獅子會 -「42周年慈善晚宴」 </div> <div class="event_details"> 屬會 : 九龍塘獅子會<br> 活動名稱 : 「42周年慈善晚宴」<br> 日期 : 2018年8月25日<br> 時間 : 晚上7時<br> 地點 : 香港世界貿易中心會<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-25</b></div> <div class="event_content"> <div class="event_title"> 綫灣獅子會 -「2018/2019年度職員就職典禮 暨〈紅色嘉年華〉慈善晚宴」 </div> <div class="event_details"> 屬會 : 銀綫灣獅子會<br> 活動名稱 : 「2018/2019年度職員就職典禮 暨〈紅色嘉年華〉慈善晚宴」<br> 日期 : 2018年8月25日<br> 時間 : 晚上7時<br> 地點 : 香港洲際酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-28</b></div> <div class="event_content"> <div class="event_title"> 香港新時代獅子會 -「獅子傳揚愛心菜」服務 </div> <div class="event_details"> 屬會 : 香港新時代獅子會<br> 活動名稱 : 「獅子傳揚愛心菜」服務<br> 日期 : 2018年8月28日<br> 時間 : 晚上6時至9時<br> 地點 : 深水埗區<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-08-28</b></div> <div class="event_content"> <div class="event_title"> 香港千禧獅子會 -「2018/19年度職員就職典禮」 </div> <div class="event_details"> 屬會 : 香港千禧獅子會<br> 活動名稱 : 「2018/19年度職員就職典禮」<br> 日期 : 2018年8月28日<br> 時間 : 晚上7時<br> 地點 : 帝京酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-01</b></div> <div class="event_content"> <div class="event_title"> 香港筆架山獅子會 -「第四十屆職員就職典禮 暨女賓夕慈善餐舞會」 </div> <div class="event_details"> 屬會 : 香港筆架山獅子會<br> 活動名稱 : 「第四十屆職員就職典禮 暨女賓夕慈善餐舞會」<br> 日期 : 2018年9月1日<br> 時間 : 晚上6時<br> 地點 : 帝京酒店宴會廳<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-01</b></div> <div class="event_content"> <div class="event_title"> 國際獅子會腎病教育中心及研究基金 -「二十七週年紀念慈善餐舞會 暨 第二十八屆董事局就職典禮」 </div> <div class="event_details"> 活動名稱 : 國際獅子會腎病教育中心及研究基金 -「二十七週年紀念慈善餐舞會 暨 第二十八屆董事局就職典禮」<br> 日期 : 2018年9月1日<br> 時間 : 晚上7時30分<br> 地點 : 香港洲際酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-06</b></div> <div class="event_content"> <div class="event_title"> 香港新時代獅子會 -「創會8周年 暨 第9屆就職典禮 慈善晚宴」 </div> <div class="event_details"> 屬會 : 香港新時代獅子會<br> 活動名稱 : 「創會8周年 暨 第9屆就職典禮 慈善晚宴」<br> 日期 : 2018年9月6日<br> 時間 : 晚上7時30分<br> 地點 : 帝京酒店喜宴堂<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-07</b></div> <div class="event_content"> <div class="event_title"> 澳門獅子會 -「2018-2019年度職員就職典禮 暨 47週年慈善晚宴」 </div> <div class="event_details"> 屬會 : 澳門獅子會<br> 活動名稱 : 「2018-2019年度職員就職典禮 暨 47週年慈善晚宴」<br> 日期 : 2018年9月7日<br> 時間 : T.B.A.<br> 地點 : 澳門美高梅宴會廳<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-10</b></div> <div class="event_content"> <div class="event_title"> 3rd Special Cabinet Meeting 2018-2019 </div> <div class="event_details"> 活動名稱 : 1st Special Cabinet Meeting 2018-2019<br> 日期 : 2018年9月10日<br> 時間 : 晚上7時<br> 地點 : District 303 Office<br> 出席 : Cabinet Officers </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-11</b></div> <div class="event_content"> <div class="event_title"> 新界東獅子會 -「2018-2019年度職員就職典禮」 </div> <div class="event_details"> 屬會 : 新界東獅子會<br> 活動名稱 : 「2018-2019年度職員就職典禮」<br> 日期 : 2018年9月11日<br> 時間 : 晚上7時<br> 地點 : THE ONE煌府婚宴專門店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-13</b></div> <div class="event_content"> <div class="event_title"> 港澳獅子會歷屆會長會 -「第一次聯誼聚餐」 </div> <div class="event_details"> 活動名稱 : 港澳獅子會歷屆會長會 -「第一次聯誼聚餐」<br> 日期 : 2018年9月13日<br> 時間 : 晚上7時<br> 地點 : 又一村會所<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-09-16</b></div> <div class="event_content"> <div class="event_title"> 北九龍獅子會 -「2018-2019年度職員就職典禮」 </div> <div class="event_details"> 屬會 : 北九龍獅子會<br> 活動名稱 : 「2018-2019年度職員就職典禮」<br> 日期 : 2018年9月16日<br> 時間 : 晚上7時<br> 地點 : 帝京酒店<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-10-02</b></div> <div class="event_content"> <div class="event_title"> 香港中港獅子會 -「2018-2019年度新職員就職典禮 暨 創會26週年紀念慈善餐舞會」 </div> <div class="event_details"> 屬會 : 香港中港獅子會<br> 活動名稱 :「2018-2019年度新職員就職典禮 暨 創會26週年紀念慈善餐舞會」<br> 日期 : 2018年10月2日<br> 時間 : 晚上6時30分<br> 地點 : 石澳鄉村俱樂部<br> 出席 : By Invitation </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-10-08</b></div> <div class="event_content"> <div class="event_title"> 4th Special Cabinet Meeting 2018-2019 </div> <div class="event_details"> 活動名稱 : 4th Special Cabinet Meeting 2018-2019<br> 日期 : 2018年10月8日<br> 時間 : 晚上7時<br> 地點 : District 303 Office<br> 出席 : Cabinet Officers </div> </div> </div> <div class="event"> <div class="event_date"><b>2018-10-27</b></div> <div class="event_content"> <div class="event_title"> 第一分區服務計劃 - 「校園環保小農夫水耕菜種植獎勵計劃 - 啟動禮及工作坊」 </div> <div class="event_details"> 活動名稱 : 第一分區服務計劃 - 「校園環保小農夫水耕菜種植獎勵計劃 - 啟動禮及工作坊」<br> 日期 : 2018年10月27日<br> 時間 : 上午10時至中午12時<br> 地點 : t.b.a.<br> 出席 : By Invitation </div> </div> </div>
</div> <!-- end of list view --> </div> </div>
<!-- scroll to top --> <a href="#"class="scrollToTop"><img src="../img/scrollTop.png"></a>
<!-- end of application --> <?php include 'footer_en.php';?> <!-- end of footer -->
</div> <!-- end of wrapper -->
<script src="../js/jquery.js"></script>
<!-- slick --> <script type="text/javascript" src="../js/slick.min.js"></script>
<script src="../js/lightslider.js"></script>
<link href='../css/fullcalendar.min.css' rel='stylesheet' />
<script src='../js/moment.min.js'></script> <script src='../js/fullcalendar.min.js'></script> <script>
$(document).ready(function() {
$('#calendar').fullCalendar({ header: { left: 'today', center: 'title', right:'prev,next', },
eventMouseover: function (data, event, view) {
//tooltip = '<div class="tooltiptopicevent" style="position:absolute;z-index:10001;">' + '<div class="tooltiptopicevent_title">' + '活動' + ': ' + data.title +'</div>'+ '<div class="tooltiptopicevent_content">' + '內容' + ': ' + data.start + '</div>' + '</div>'; tooltip = '<div class="tooltiptopicevent" style="position:absolute;z-index:10001;">' + '<div class="tooltiptopicevent_title"><b>' + data.title + '</b><br /><br />Location:' + data.location + '<br />Time:' + data.time +'</div>';
$("body").append(tooltip); $(this).mouseover(function (e) { $(this).css('z-index', 10000); $('.tooltiptopicevent').fadeIn('500'); $('.tooltiptopicevent').fadeTo('10', 1.9); }).mousemove(function (e) { $('.tooltiptopicevent').css('top', e.pageY + 10); $('.tooltiptopicevent').css('left', e.pageX + 20); });
}, eventMouseout: function (data, event, view) { $(this).css('z-index', 8);
$('.tooltiptopicevent').remove();
},
defaultView: 'month', defaultDate: '2018-08-01', navLinks: false, // can click day/week names to navigate views editable: false,
eventLimit: true, // for all non-agenda views views: { agenda: { eventLimit: 3 // adjust to 6 only for agendaWeek/agendaDay } },
events: [ { id: 1, title: '香島獅子會「創會55週年慈善餐舞會暨 2018 – 2019職員就職典禮」', start: '2018-06-21', location: '', time: '' }, { id: 1, title: '“總監盃” - 高爾夫球比賽"', start: '2018-06-22', className: "wrap-event", location: '', time: '' }, { id: 1, title: '2017 - 2018年度國際青年交流活動「歡送晚會」', start: '2018-06-22', className: "wrap-event", location: '', time: '' }, { id: 1, title: '303區青年拓展及禁毒警覺委員會「YODAC獎勵計劃」', start: '2018-06-23', className: "wrap-event", location: '', time: '' }, { id: 1, title: '第一分域聯合服務《麥當勞叔叔之家「親子料理樂繽紛」》', start: '2018-06-23', className: "wrap-event", location: '', time: '' }, { id: 1, title: '第九分域聯合服務善有善報「關懷貧困在聖巴拿巴會之家」', start: '2018-06-23', className: "wrap-event", location: '', time: '' }, { id: 1, title: '國際獅子總會中國港澳303區「癌症兒童驗眼先導計劃」活動啟動儀式', start: '2018-06-24', className: "wrap-event", location: '', time: '' }, { id: 1, title: '國際獅子總會中國港澳303區、澳門獅子會及濠江中央獅子會 聯合主辦「獅子同心抗毒環山接力賽2018」', start: '2018-06-24', className: "wrap-event", location: '', time: '' }, { id: 1, title: '獅子會禁毒先鋒隊', start: '2018-06-26', location: '', time: '' }, { id: 1, title: ' 101th Lions Clubs Int’l Convention', start: '2018-06-29', location: '', time: '' }, { id: 1, title: ' 101th Lions Clubs Int’l Convention', start: '2018-06-30', className: "wrap-event", location: '', time: '' }, { id: 1, title: '新界東獅子會 - 「熱舞、歌聲傳愛心2018」', start: '2018-06-30', className: "wrap-event", location: '', time: '' }, { id: 1, title: ' 101th Lions Clubs Int’l Convention', start: '2018-07-01', location: '', time: '' }, { id: 1, title: ' 101th Lions Clubs Int’l Convention', start: '2018-07-02', location: '', time: '' }, { id: 1, title: ' 101th Lions Clubs Int’l Convention', start: '2018-07-03', location: '', time: '' }, { id: 1, title: '香港尖沙咀獅子會 - 第44屆職員就職典禮晚會', start: '2018-07-06', location: '', time: '' }, { id: 1, title: '香港寶馬山獅子會 - Installation Ceremony 2018-2019', start: '2018-07-09', location: '', time: '' }, { id: 1, title: '港東獅子會 - 第四十一週年紀念 暨 第四十二屆職員就職典禮', start: '2018-07-13', location: '', time: '' }, { id: 2, title: '香港大灣區獅子會 - 創會授証典禮 暨 慈善晚宴', start: '2018-07-14', location: '', time: '' }, { id: 3, title: '九龍灣獅子會 - 『星星運動會』服務活動計劃 ', start: '2018-07-15', location: '', time: '' }, { id: 4, title: '1st Special Cabinet Meeting 2018-2019 ', start: '2018-07-16', location: '', time: '' }, { id: 5, title: '港島獅子會 - 創會39週年慈善晚會 暨 2018-2019年度職員就職', start: '2018-07-21', location: '', time: '' }, { id: 6, title: '香港北區獅子會 - 2018-2019 年度新職員就職典禮', start: '2018-07-27', location: '', time: '' }, { id: 7, title: '香港快活谷獅子會 - 2018至2019年度新職員就職典禮 暨 女賓夕慈善', start: '2018-07-28', location: '', time: '' }, { id: 8, title: '香港和平獅子會 - 2018-2019年度職員就職典禮 暨 第二屆慈善餐晚宴', start: '2018-07-29', location: '', time: '' }, { id: 9, title: '2018-2019年度屬會職員領導才能工作坊', start: '2018-08-04', location: '澳門喜來登金沙城中心大酒店', time: '' }, { id: 9, title: '2018-2019年度屬會職員領導才能工作坊', start: '2018-08-05', location: '澳門喜來登金沙城中心大酒店', time: '' }, { id: 9, title: '香港深水埗獅子會 - 「第十屆職員就職典禮 暨 慈善籌款晚宴」', start: '2018-08-07', location: '帝京酒店', time: '晚上7時' }, { id: 9, title: '2nd New Members Orientation Semianr', start: '2018-08-10', location: 'District 303 Office', time: '晚上7時' }, { id: 9, title: 'Joint Installation Ceremony of Office Bearers 2018 - 2019', start: '2018-08-11', location: 'HKCEC Grand Hall', time: '晚上7時' }, { id: 9, title: '香港星光獅子會 - 《星動力量》青年體育培訓計劃啟動禮 暨《逆流大叔》口述電影體驗欣賞會', start: '2018-08-12', location: 'UA Cine Times', time: '早上11時至下午1時' }, { id: 9, title: '2nd Special Cabinet Meeting 2018-2019', start: '2018-08-13', location: 'District 303 Office', time: '晚上7時' }, { id: 9, title: '屯門獅子會 - 「2018-2019年度新職員就職典禮', start: '2018-08-16', location: 'Hotel Icon', time: '晚上7時' }, { id: 10, title: 'Lions Club of Central - 「Health Forum for Special Olympics」', start: '2018-08-18', location: '保良局陳百強伉儷學校', time: '下午1時至4時', className: "wrap-event" }, { id: 10, title: '鑪峯獅子會 - 「43周年紀念 暨 2018-2019年度就職典禮」', start: '2018-08-18', location: '香港富豪酒店宴會廳', time: '晚上7時', className: "wrap-event" }, { id: 10, title: '香港中華傳統文化獅子會 - 「2018至2019年度新職員就職典禮」', start: '2018-08-19', location: 'T.B.A.', time: 'T.B.A.' }, { id: 10, title: '1st Quarterly Cabinet Meeting 2018-2019', start: '2018-08-20', location: 'District 303 Office', time: '晚上7時', className: "wrap-event" }, { id: 11, title: '1st Joint Advisory Zone Meeting 2018-2019', start: '2018-08-20', location: 'District 303 Office', time: '晚上7時30分', className: "wrap-event" }, { id: 11, title: '香港半山獅子會 - 「2018-2019年度就職典禮」', start: '2018-08-21', location: 'T.B.A.', time: 'T.B.A.' }, { id: 11, title: '香港北區獅子會 - 馬清岳紀念盃', start: '2018-08-24', location: '粉嶺高爾夫球場-Eden Course', time: '上午11時48分', className: "wrap-event" }, { id: 11, title: '香港新民獅子會 - 樂在新民-香港新民獅子會13週年晚宴', start: '2018-08-24', location: '龍堡國際酒店', time: '下午7時30分', className: "wrap-event" }, { id: 11, title: '青年獅子區職員 暨 屬會職員聯合就職典禮', start: '2018-08-25', location: '九龍灣國際展覽中心 展貿廳2(3/F)', time: '下午2時', className: "wrap-event" }, { id: 11, title: '九龍塘獅子會 -「42周年慈善晚宴」', start: '2018-08-25', location: '香港世界貿易中心會', time: '晚上7時', className: "wrap-event" }, { id: 11, title: '銀綫灣獅子會 -「2018/2019年度職員就職典禮 暨〈紅色嘉年華〉慈善晚宴」', start: '2018-08-25', location: '香港洲際酒店', time: '晚上7時', className: "wrap-event" }, { id: 12, title: '香港新時代獅子會 -「獅子傳揚愛心菜」服務', start: '2018-08-28', location: '深水埗區', time: '晚上6時至9時', className: "wrap-event" }, { id: 12, title: '香港千禧獅子會 -「2018/19年度職員就職典禮」', start: '2018-08-28', location: '帝京酒店', time: '晚上7時', className: "wrap-event" }, { id: 13, title: '香港筆架山獅子會 -「第四十屆職員就職典禮 暨女賓夕慈善餐舞會」', start: '2018-09-01', location: '帝京酒店宴會廳', time: '晚上6時', className: "wrap-event" }, { id: 13, title: '國際獅子會腎病教育中心及研究基金 -「二十七週年紀念慈善餐舞會 暨 第二十八屆董事局就職典禮」', start: '2018-09-01', location: '香港洲際酒店', time: '晚上7時30分', className: "wrap-event" }, { id: 14, title: '香港新時代獅子會 -「創會8周年 暨 第9屆就職典禮 慈善晚宴」', start: '2018-09-06', location: '帝京酒店喜宴堂', time: '晚上7時30分' }, { id: 14, title: '澳門獅子會 -「2018-2019年度職員就職典禮 暨 47週年慈善晚宴」', start: '2018-09-07', location: '澳門美高梅宴會廳', time: 'T.B.A.' }, { id: 14, title: '3rd Special Cabinet Meeting 2018-2019', start: '2018-09-10', location: 'District 303 Office', time: '晚上7時' }, { id: 14, title: '新界東獅子會 -「2018-2019年度職員就職典禮」', start: '2018-09-11', location: 'THE ONE煌府婚宴專門店', time: '晚上7時' }, { id: 14, title: '港澳獅子會歷屆會長會 -「第一次聯誼聚餐」', start: '2018-09-13', location: '又一村會所', time: '晚上7時' }, { id: 14, title: '北九龍獅子會 -「2018-2019年度職員就職典禮」', start: '2018-09-16', location: '帝京酒店', time: '晚上7時' }, { id: 15, title: '香港中港獅子會 -「2018-2019年度新職員就職典禮 暨 創會26週年紀念慈善餐舞會」', start: '2018-10-02', location: '石澳鄉村俱樂部', time: '晚上6時30分' }, { id: 15, title: '4th Special Cabinet Meeting 2018-2019', start: '2018-10-08', location: 'District 303 Office', time: '晚上7時' }, { id: 15, title: '第一分區服務計劃 - 「校園環保小農夫水耕菜種植獎勵計劃 - 啟動禮及工作坊」', start: '2018-10-27', location: 't.b.a', time: '上午10時至中午12時' }
], eventClick: function(event) { if (event.url) { window.open(event.url); return false; } }
});
}); </script>
<script src="../js/script.js"></script> <script type="text/javascript" src="../js/nav_drop.js"></script> <script type="text/javascript" src="../js/functions.js"></script> </body> </html>
|