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
|
<?php $page_setting['title'] = __('Organizers') . ' | ' . __('GBA Outstanding Women Entrepreneur Awards {%year%}', ['year' => $page_setting['year']]); ?> <?php include_once('templates/top.php'); ?>
<section id="page-title" style="background-image: url('<?php echo assets_url('main/img/content/structure/backdrop_HK.jpg'); ?>');" class="background-title"> <div class="container clearfix"> <h2 class="colorFFF m0"><?php echo __('Organizers'); ?></h2> <ol class="breadcrumb"> <li><a href="#"><?php echo __('Home'); ?></a></li> <li class="active"><?php echo __('Organizers'); ?></li> </ol> </div> </section>
<!-- content start --> <section id="content">
<div class="content bg_section_contain" style="padding-bottom:0;background-image: url('<?php echo assets_url('main/img/content/background_01.jpg'); ?>');"> <div class="container clearfix">
<div class="row clearfix"> <div class="col_full topmargin-sm clearfix">
<div class="col-md-12 organization"> <a href="https://www.hksme.hk/" target="_blank"><img src="<?php echo assets_url('main/img/content/structure/sponsor_supporting/hksme.png'); ?>"></a> <div class="entry-content font15 "> <p><?php echo __('Established in 1996, Hong Kong Small and Medium Enterprises Association (HKSME) has been striving to unite industries, create a favorable business environment for industries and enhance the competitiveness of small and medium-sized enterprises. Highly emphasizing the importance of the commerce and trade developments, HKSME endeavors to be a communication bridge between the government, the business community and the political sector to support the HKSAR Government to promote economic development and improve people's livelihood.'); ?></p> </div> </div>
<div class="col-md-12 organization"> <a href="http://www.metroradio.com.hk/MetroFinance/" target="_blank"><img src="<?php echo assets_url('main/img/content/structure/sponsor_supporting/metro_logo.png'); ?>"></a> <div class="entry-content font15"> <p><?php echo __('Metro Broadcast Corporation Limited currently operates 3 channels namely Metro Finance, Metro Info and Metro Plus, simultaneously providing AM and FM services. The 3 channels offer listeners updates on global finance, music, entertainment, lifestyle, multi-cultural exchange etc.'); ?></p>
<p><?php echo __('Metro Finance is the first 24-hour Cantonese finance radio channel in the world. Its goal is to provide the audience in Hong Kong and other parts of the world with accurate, real-time and market-moving news and important information of global financial markets. Being a breakthrough in the local radio industry, Metro Finance provides the simulcast programmes with Radio Guangdong, Shanghai Media Group and Shenzhen News Radio 89.8, to report up-to-date information of the financial markets.'); ?></p> </div> </div>
</div> </div>
<div class="row mb-50"> <div class="col-md-12"> <div class="fancy-title mb-20"> <h3 class="mb-10"><?php echo __('Organizing Committee'); ?></h3>
<?php $width = get_lang() == 'en' ? '150' : '110'; ?> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('Co - Chairman'); ?></div> <div class="table_content"><?php echo __('Ms. Pam Mak, Mr. M. H. Sung'); ?></div> </div> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('Co – Vice Chairman'); ?></div> <div class="table_content"><?php echo __('Ms. Pienna Ip, Mr. Anthony Leung'); ?></div> </div> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('Chief Executive Secretary'); ?></div> <div class="table_content"><?php echo __('Ms. Janet Yeung, Ms. Letty Ma'); ?></div> </div> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('Treasurer'); ?></div> <div class="table_content"><?php echo __('Ms. Catherine Chan, Mr. Alfred Chan'); ?></div> </div> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('Project Director'); ?></div> <div class="table_content"><?php echo __('Michelle Ngai'); ?></div> </div> <div class="table_row"> <div class="table_title" style="width:<?php echo $width; ?>px;"><?php echo __('IT Director'); ?></div> <div class="table_content"><?php echo __('Mr. Man Fok'); ?></div> </div> </div> </div> </div>
</div> </div>
</section> <!-- content end -->
<?php include_once('templates/bottom.php'); ?> <script type="text/javascript"> $('nav ul > li.lv01:nth-child(4)').addClass('current'); </script>
|