文件整理
parent
9388c8a7fc
commit
f7a83101e9
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
|
||||||
|
echo '<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta name="robots" content="noindex,nofollow" /><title>Customers Email Review - China Highlights</title></head>';
|
||||||
|
echo '<body style="color: #333; margin: 20px 0px; padding: 0px; font-family: Verdana, Geneva, sans-serif; font-size: 12px;">';
|
||||||
|
echo '<div style="width:740px; display: block; background:#e8e8e8; padding:12px; margin:25px auto 10px; overflow: hidden;">';
|
||||||
|
echo '<div class="ahInfo" style="background:#fff; width:350px; display: block; float: left; border-right: 1px solid #d1d1d1; padding:35px 25px; height:395px; position:relative;">';
|
||||||
|
echo '<img src="https://www.asiahighlights.com/pic/thankyou-title.png"/>';
|
||||||
|
echo '<p style=" font-size:14px; line-height:22px; margin-bottom:10px;">One of our specialists will go through your travel plan
|
||||||
|
and contact you within 24 hours. </p>';
|
||||||
|
echo '<p style=" font-size:14px; line-height:22px; margin-bottom:10px;">Here is a general frame of your inquiry. Let us know if
|
||||||
|
it is incorrect or you need to make any changes.</p>';
|
||||||
|
echo '<p style=" font-size:14px; line-height:22px; margin-bottom:10px;">Thank you once again for choosing Asia Highlights. </p>';
|
||||||
|
echo '<p style=" font-size:14px; line-height:22px; margin-bottom:40px;">Kind Regards,</p>';
|
||||||
|
echo '<img src="https://www.asiahighlights.com/pic/ah-team.png"/><div style="display:block;float: right;"><img src="https://data.asiahighlights.com/pic/logo-104.png"></div>';
|
||||||
|
echo '<span style="display: block; margin-top:40px;"><a style="color:#555;" href="//www.asiahighlights.com">www.asiahighlights.com</a></div></span>';
|
||||||
|
echo '<div class="customerInfo" style=" background:#f8f8f8; height:100%; display: block; width:309px; float: right; padding:15px; height:435px;"><ul style="margin-left:10px; padding-left:15px;">';
|
||||||
|
echo '<li style="list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555;font-size:16px; display: block; margin:10px 0 15px;">Your travel plans</li>';
|
||||||
|
$destinationstr = '';
|
||||||
|
foreach ($this->input->post('destination') as $destination){
|
||||||
|
$destinationstr .= $destination.',';
|
||||||
|
}
|
||||||
|
$destinationstr = substr($destinationstr,0,strlen($destinationstr)-1);
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="margin-left: 0;font-weight: normal; color:#999;">Destination:</strong>'.$destinationstr.'</li>';
|
||||||
|
|
||||||
|
if(empty($this->input->post('Date_Start'))){
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Date of arrival:</strong>'.$this->input->post('Date_Start_Mobile').'</li>';
|
||||||
|
}else{
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Date of arrival:</strong>'.$this->input->post('Date_Start').'</li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Hotel style:</strong>'.$this->input->post('hotel').'</li>';
|
||||||
|
echo '<li style="font-size:16px; display: block; margin:20px 0 15px;">Your details</li>';
|
||||||
|
if($this->input->post('gender') == 100001){
|
||||||
|
echo '<li style="margin-left:0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Title:</strong>Mr</li>';
|
||||||
|
}elseif($this->input->post('gender') == 100003){
|
||||||
|
echo '<li style="margin-left:0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Title:</strong>Ms</li>';
|
||||||
|
}else{
|
||||||
|
echo '<li style="margin-left:0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Title:</strong>Mx</li>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">First Name:</strong>'.$this->input->post('name').'</li>';
|
||||||
|
|
||||||
|
echo '<li style="margin-left: 0;list-style: none; font-size:14px; line-height:18px; margin-bottom:10px; color:#555"><strong style="font-weight: normal; color:#999;">Email Address:</strong>'.$this->input->post('email').'</li></ul></div></div>';
|
||||||
|
echo '<div style="width:740px; display: block; padding:12px; margin:10px auto 40px; overflow: hidden; color:#555; line-height:20px;">If you have not received a reply within 24 hours, please check your “junk mail” folder. Or email <a style="color:#555;" href="mailto:contact@asiahighlights.com">contact@asiahighlights.com</a> and we will investigate the case.</div></body><html>';
|
||||||
|
|
||||||
|
?>
|
@ -1,5 +0,0 @@
|
|||||||
<ul class="ArticleList">
|
|
||||||
<?php foreach ($same_level as $key => $v):?>
|
|
||||||
<a href="<?php echo $v->ic_url;?>"><li class="<?php echo $key===0?"ListTop":"";?>"><?php echo $v->ic_url_title;?></li></a>
|
|
||||||
<?php endforeach;?>
|
|
||||||
</ul>
|
|
@ -1,11 +0,0 @@
|
|||||||
<div class="crumbNav">
|
|
||||||
<?php foreach ($parents as $key => $value) {?>
|
|
||||||
<?php if($value["ic_url"] == "/"){?>
|
|
||||||
<a href="<?php echo $value["ic_url"];?>">Home</a>
|
|
||||||
<?php }elseif($key == count($parents)-1){?>
|
|
||||||
<?php echo $value["ic_url_title"];?>
|
|
||||||
<?php }else{?>
|
|
||||||
<a href="<?php echo $value["ic_url"];?>"><?php echo $value["ic_url_title"];?></a>
|
|
||||||
<?php }?>
|
|
||||||
<?php }?>
|
|
||||||
</div>
|
|
@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
<ul class="left_menu">
|
|
||||||
<a href=""><span class="level_one"><?php echo $level_1->ic_url_title;?></span></a>
|
|
||||||
<?php
|
|
||||||
foreach ($level_2 as $level_2_v) {
|
|
||||||
if(!empty($level_2_v->level_3)){
|
|
||||||
?>
|
|
||||||
<li class="level_tow"><?php echo $level_2_v->ic_url_title;?></li>
|
|
||||||
<?php foreach ($level_2_v->level_3 as $level_3_v) {?>
|
|
||||||
<a href="<?php if(empty($level_3_v->ic_url)){echo $level_3_v->level_4->ic_url;}else{echo $level_3_v->ic_url;}?>" ><li <?php if(in_array($level_3_v->is_id, $is_path)){echo 'class="activated"';}?> ><?php echo $level_3_v->ic_url_title;?></li></a>
|
|
||||||
<?php }?>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
</ul>
|
|
@ -1,10 +0,0 @@
|
|||||||
<?php if(!empty($data)){?>
|
|
||||||
<div class="YouMayLike row">
|
|
||||||
<h2>You May Like</h2>
|
|
||||||
<?php foreach ($data as $key => $value) {?>
|
|
||||||
<div class="col-md-12 col-sm-12 col-xs-24 infoList">
|
|
||||||
<a href="<?php echo $value->ic_url;?>"><img src="<?php echo $value->ic_photo?"http://data.asiahighlights.com/images".$value->ic_photo:"https://data.asiahighlights.com/image/asia-highlights-article.jpg";?>" /><strong><?php echo $value->ic_url_title;?></strong></a>
|
|
||||||
</div>
|
|
||||||
<?php }?>
|
|
||||||
</div>
|
|
||||||
<?php }?>
|
|
@ -1,242 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<!-- Google Analytics Content Experiment code -->
|
|
||||||
<script>function utmx_section(){}function utmx(){}(function(){var
|
|
||||||
k='118537407-3',d=document,l=d.location,c=d.cookie;
|
|
||||||
if(l.search.indexOf('utm_expid='+k)>0)return;
|
|
||||||
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
|
|
||||||
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
|
|
||||||
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
|
|
||||||
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
|
|
||||||
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
|
|
||||||
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
|
|
||||||
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
|
|
||||||
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
|
|
||||||
</script><script>utmx('url','A/B');</script>
|
|
||||||
<!-- End of Google Analytics Content Experiment code -->
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title><?php echo empty($seo_title) ? 'Vietnam Travel Agency, tour with Asia Highlights-Since 1959' : $seo_title; ?></title>
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
||||||
<meta content="yes" name="apple-mobile-web-app-capable">
|
|
||||||
<meta name="description" content="<?php echo empty($seo_description) ? false : $seo_description; ?>">
|
|
||||||
<meta name="keywords" content="<?php echo empty($seo_keywords) ? false : $seo_keywords; ?>">
|
|
||||||
<?php if (!empty($seo_url)) { ?>
|
|
||||||
<link rel="canonical" href="https://www.asiahighlights.com<?php echo $seo_url; ?>">
|
|
||||||
<?php } ?>
|
|
||||||
<link href="https://data.asiahighlights.com/min/?f=/css/global.min.css,/js/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css,/css/basic.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<?php if (!empty($meta_addon_css)) { ?>
|
|
||||||
<link href="https://data.asiahighlights.com/min/?f=<?php echo $meta_addon_css; ?>" rel="stylesheet">
|
|
||||||
<?php } ?>
|
|
||||||
<script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/bootstrap.min.js,/js/bootstrap-datepicker/bootstrap-datepicker.min.js,/js/typeahead.bundle.js,/js/basic.js,/js/jquery.form.min.js,/js/poshytip/jquery.poshytip.min.js,/js/jquery.sticky-kit.min.js"></script>
|
|
||||||
<?php echo!empty($meta_addon_js) ? '<script language="JavaScript" src="https://data.asiahighlights.com/min/?f='.$meta_addon_js.'" type="text/javascript"></script>' : false; ?>
|
|
||||||
<link rel="shortcut icon" href="https://data.asiahighlights.com/favicon.ico" />
|
|
||||||
<style>
|
|
||||||
.flowheader{
|
|
||||||
position:fixed;
|
|
||||||
width:100%;
|
|
||||||
z-index:9999;
|
|
||||||
background-color:#fff;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(function() {
|
|
||||||
if(IsPC()){
|
|
||||||
$(".dropdown-menu-ah-csk").mouseover(function() {
|
|
||||||
$(this).addClass('open');
|
|
||||||
}).mouseout(function() {
|
|
||||||
$(".dropdown-menu-ah-csk").removeClass('open');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
$(window).scroll(function(){
|
|
||||||
var top = $('body').scrollTop();
|
|
||||||
if(top > 0){
|
|
||||||
$('#header').addClass('flowheader');
|
|
||||||
$('.menu').addClass('slideMenu');
|
|
||||||
$('.flow-pic').removeClass('visible-xs');
|
|
||||||
$('.top-pic').addClass('hide');
|
|
||||||
$('.contactInfo').addClass('hide');
|
|
||||||
$('.flow_about').removeClass('hide');
|
|
||||||
$('.flow_createTrip').addClass('createTrip');
|
|
||||||
}else if(top == 0){
|
|
||||||
$('#header').removeClass('flowheader');
|
|
||||||
$('.menu').removeClass('slideMenu');
|
|
||||||
$('.top-pic').removeClass('hide');
|
|
||||||
$('.flow-pic').addClass('visible-xs');
|
|
||||||
$('.contactInfo').removeClass('hide');
|
|
||||||
$('.flow_about').addClass('hide');
|
|
||||||
$('.flow_createTrip').removeClass('createTrip');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
//展开所有天数行程
|
|
||||||
$('.openall').click(function(){
|
|
||||||
$('.dayTrip .collapse').addClass('in');
|
|
||||||
$('.detail_collapse').removeClass('collapsed');
|
|
||||||
$('.detail_collapse').removeClass('openAction');
|
|
||||||
$('.detail_collapse').addClass('closeAction');
|
|
||||||
$('.collapse').removeAttr('style');
|
|
||||||
$('.collapse').attr('style','height:auto');
|
|
||||||
});
|
|
||||||
|
|
||||||
//关闭所有天数行程
|
|
||||||
$('.closeall').click(function(){
|
|
||||||
$('.collapse').removeClass('in');
|
|
||||||
$('.detail_collapse').removeClass('closeAction');
|
|
||||||
$('.detail_collapse').addClass('openAction');
|
|
||||||
});
|
|
||||||
|
|
||||||
//单天页面打开关闭
|
|
||||||
$('.detail_collapse').click(function(){
|
|
||||||
var flag = $(this).hasClass('collapsed');
|
|
||||||
if(!flag){
|
|
||||||
$(this).removeClass('closeAction');
|
|
||||||
$(this).addClass('openAction');
|
|
||||||
}else{
|
|
||||||
$(this).removeClass('openAction');
|
|
||||||
$(this).addClass('closeAction');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="header">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row navbar-inverse" role="1navigation">
|
|
||||||
<div class="navbar-header col-xs-4">
|
|
||||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-6 col-sm-6 col-xs-10 top-pic hidden-xs"><a href="/"><img src="https://data.asiahighlights.com/pic/logo-ah.png" class="img-responsive" alt="Asia Highlights"></a></div>
|
|
||||||
<div class="col-md-6 col-sm-6 col-xs-12 flow-pic visible-xs"><a href="/"><img src="https://data.asiahighlights.com/pic/ah-slide-logo.png" class="img-responsive" alt="Asia Highlights"></a></div>
|
|
||||||
<?php if($_SERVER['REQUEST_URI'] != '/create-my-trip.htm'){?>
|
|
||||||
<div class="col-xs-8 tailorM">
|
|
||||||
<a href="/create-my-trip.htm">CUSTOMIZE</a>
|
|
||||||
</div>
|
|
||||||
<?php }?>
|
|
||||||
<div class="collapse navbar-collapse csk-overflow-y">
|
|
||||||
<div class="col-md-18 col-sm-18" id="mainNav">
|
|
||||||
<div class="contactInfo hidden-xs"> <a href="/contact-us.htm">Contact us</a> <span class="phoneNumber">USA/CA: 800-2682918</span></div>
|
|
||||||
<div class="menu">
|
|
||||||
<?php
|
|
||||||
$url = get_origin_url();
|
|
||||||
$active_home = '';
|
|
||||||
$active_guide = '';
|
|
||||||
$active_tours = '';
|
|
||||||
$active_mytrip = '';
|
|
||||||
$active_aboutus = '';
|
|
||||||
switch ($url) {
|
|
||||||
case '/':
|
|
||||||
$active_home = 'active';
|
|
||||||
break;
|
|
||||||
case '/guide/':
|
|
||||||
$active_guide = 'active';
|
|
||||||
break;
|
|
||||||
case '/tours/':
|
|
||||||
$active_tours = 'active';
|
|
||||||
break;
|
|
||||||
case '/create-my-trip.htm':
|
|
||||||
$active_mytrip = 'active';
|
|
||||||
break;
|
|
||||||
case '/about-us.htm':
|
|
||||||
$active_aboutus = 'active';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<a href="/" class="<?php echo $active_home; ?>">Home</a>
|
|
||||||
<!-- <a href="/vietnam/" class="<?php echo $active_guide; ?>">Plan Your Trip</a> -->
|
|
||||||
<li class="dropdown dropdown-menu-ah-csk" id="dropdown-menu-ah">
|
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Plan Your Trip<span class="caret"></span></a>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/year.htm">Southeast Asia </a></em>
|
|
||||||
<a href="/tours/year.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/hot-air-balloon-flight-over-bagan.jpg" alt="Hot-air-balloon Flight over Bagan" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/myanmar/">Myanmar</a></em>
|
|
||||||
<a href="/myanmar/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/myanmar-monks.jpg" alt="myanmar" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/vietnam/">Vietnam</a></em>
|
|
||||||
<a href="/vietnam/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/vietnam.jpg" alt="vietnam" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/cambodia/">Cambodia</a></em>
|
|
||||||
<a href="/cambodia/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/cambodia.jpg" alt="cambodia" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<em><a href="/laos/">Laos</a></em>
|
|
||||||
<a href="/laos/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/laos.jpg" alt="Laos" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/cambodia/angkor-wat-travel-guide.htm">Angkor Wat</a></em>
|
|
||||||
<a href="/cambodia/angkor-wat-travel-guide.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/angkor-wat.jpg" alt="Angkor Wat" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/southeast-asia/ports-and-shore-excursions.htm">Arriving by Cruise</a></em>
|
|
||||||
<a href="/southeast-asia/ports-and-shore-excursions.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/bangkok-excursion.jpg" alt="Bangkok Excursion" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<!-- <a href="/tours/" class="<?php echo $active_tours; ?>">Tours</a> -->
|
|
||||||
<li class="dropdown dropdown-menu-ah-csk">
|
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Tours<span class="caret"></span></a>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/">Top Asia Tours</a></em>
|
|
||||||
<a href="/tours/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/wat-phra-singh.jpg" alt="wat phra singh" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/japan.htm">Japan Tours</a></em>
|
|
||||||
<a href="/tours/japan.htm" class="hidden-xs">
|
|
||||||
<img src="/image/miyajima-island-of-japan.jpg" alt="miyajima island" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/myanmar.htm">Myanmar Tours</a></em>
|
|
||||||
<a href="/tours/myanmar.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/myanmar-lady.jpg" alt="Myanmar Lady" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/vietnam.htm">Vietnam Tours</a></em>
|
|
||||||
<a href="/tours/vietnam.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/ha-long-bay.jpg" alt="Halong Bay" class="img-rounded"/>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<a href="/about-us.htm" class="<?php echo $active_aboutus; ?>">About</a>
|
|
||||||
<a href="/orders/triprequest.htm" class="<?php echo $active_mytrip;?> flow_createTrip">Create My Trip</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,249 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<!-- Google Analytics Content Experiment code -->
|
|
||||||
<script>function utmx_section(){}function utmx(){}(function(){var
|
|
||||||
k='118537407-9',d=document,l=d.location,c=d.cookie;
|
|
||||||
if(l.search.indexOf('utm_expid='+k)>0)return;
|
|
||||||
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
|
|
||||||
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
|
|
||||||
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
|
|
||||||
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
|
|
||||||
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
|
|
||||||
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
|
|
||||||
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
|
|
||||||
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
|
|
||||||
</script><script>utmx('url','A/B');</script>
|
|
||||||
<!-- End of Google Analytics Content Experiment code -->
|
|
||||||
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title><?php echo empty($seo_title) ? 'Vietnam Travel Agency, tour with Asia Highlights-Since 1959' : $seo_title; ?></title>
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
||||||
<meta content="yes" name="apple-mobile-web-app-capable">
|
|
||||||
<meta name="description" content="<?php echo empty($seo_description) ? false : $seo_description; ?>">
|
|
||||||
<meta name="keywords" content="<?php echo empty($seo_keywords) ? false : $seo_keywords; ?>">
|
|
||||||
<?php if (!empty($seo_url)) { ?>
|
|
||||||
<link rel="canonical" href="https://www.asiahighlights.com<?php echo $seo_url; ?>">
|
|
||||||
<?php } ?>
|
|
||||||
<link href="https://data.asiahighlights.com/min/?f=/css/global.min.css,/js/bootstrap-datepicker/css/bootstrap-datepicker3.standalone.css,/css/basic.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<?php if (!empty($meta_addon_css)) { ?>
|
|
||||||
<link href="https://data.asiahighlights.com/min/?f=<?php echo $meta_addon_css; ?>" rel="stylesheet">
|
|
||||||
<?php } ?>
|
|
||||||
<script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/bootstrap.min.js,/js/bootstrap-datepicker/bootstrap-datepicker.min.js,/js/typeahead.bundle.js,/js/basic.js,/js/jquery.form.min.js,/js/poshytip/jquery.poshytip.min.js,/js/jquery.sticky-kit.min.js"></script>
|
|
||||||
<?php echo!empty($meta_addon_js) ? '<script language="JavaScript" src="https://data.asiahighlights.com/min/?f='.$meta_addon_js.'" type="text/javascript"></script>' : false; ?>
|
|
||||||
<link rel="shortcut icon" href="https://data.asiahighlights.com/favicon.ico" />
|
|
||||||
<style>
|
|
||||||
.flowheader{
|
|
||||||
position:fixed;
|
|
||||||
width:100%;
|
|
||||||
z-index:9999;
|
|
||||||
background-color:#fff;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(function() {
|
|
||||||
if(IsPC()){
|
|
||||||
$(".dropdown-menu-ah-csk").mouseover(function() {
|
|
||||||
$(this).addClass('open');
|
|
||||||
}).mouseout(function() {
|
|
||||||
$(".dropdown-menu-ah-csk").removeClass('open');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
$(window).scroll(function(){
|
|
||||||
var top = $('body').scrollTop();
|
|
||||||
if(top > 0){
|
|
||||||
$('#header').addClass('flowheader');
|
|
||||||
$('.menu').addClass('slideMenu');
|
|
||||||
$('.flow-pic').removeClass('visible-xs');
|
|
||||||
$('.top-pic').addClass('hide');
|
|
||||||
$('.contactInfo').addClass('hide');
|
|
||||||
$('.flow_about').removeClass('hide');
|
|
||||||
$('.flow_createTrip').addClass('createTrip');
|
|
||||||
}else if(top == 0){
|
|
||||||
$('#header').removeClass('flowheader');
|
|
||||||
$('.menu').removeClass('slideMenu');
|
|
||||||
$('.top-pic').removeClass('hide');
|
|
||||||
$('.flow-pic').addClass('visible-xs');
|
|
||||||
$('.contactInfo').removeClass('hide');
|
|
||||||
$('.flow_about').addClass('hide');
|
|
||||||
$('.flow_createTrip').removeClass('createTrip');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
//展开所有天数行程
|
|
||||||
$('.openall').click(function(){
|
|
||||||
$('.dayTrip .collapse').addClass('in');
|
|
||||||
$('.detail_collapse').removeClass('collapsed');
|
|
||||||
$('.detail_collapse').removeClass('openAction');
|
|
||||||
$('.detail_collapse').addClass('closeAction');
|
|
||||||
$('.collapse').removeAttr('style');
|
|
||||||
$('.collapse').attr('style','height:auto');
|
|
||||||
});
|
|
||||||
|
|
||||||
//关闭所有天数行程
|
|
||||||
$('.closeall').click(function(){
|
|
||||||
$('.collapse').removeClass('in');
|
|
||||||
$('.detail_collapse').removeClass('closeAction');
|
|
||||||
$('.detail_collapse').addClass('openAction');
|
|
||||||
});
|
|
||||||
|
|
||||||
//单天页面打开关闭
|
|
||||||
$('.detail_collapse').click(function(){
|
|
||||||
var flag = $(this).hasClass('collapsed');
|
|
||||||
if(!flag){
|
|
||||||
$(this).removeClass('closeAction');
|
|
||||||
$(this).addClass('openAction');
|
|
||||||
}else{
|
|
||||||
$(this).removeClass('openAction');
|
|
||||||
$(this).addClass('closeAction');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="header">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row navbar-inverse" role="1navigation">
|
|
||||||
<div class="navbar-header col-xs-4">
|
|
||||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-6 col-sm-6 col-xs-10 top-pic hidden-xs"><a href="/"><img src="https://data.asiahighlights.com/pic/logo-ah.png" class="img-responsive" alt="Asia Highlights"></a></div>
|
|
||||||
<div class="col-md-6 col-sm-6 col-xs-12 flow-pic visible-xs"><a href="/"><img src="https://data.asiahighlights.com/pic/ah-slide-logo.png" class="img-responsive" alt="Asia Highlights"></a></div>
|
|
||||||
<?php if($_SERVER['REQUEST_URI'] != '/create-my-trip.htm'){?>
|
|
||||||
<div class="col-xs-8 tailorM">
|
|
||||||
<a href="/create-my-trip.htm">CUSTOMIZE</a>
|
|
||||||
</div>
|
|
||||||
<?php }?>
|
|
||||||
<div class="collapse navbar-collapse csk-overflow-y">
|
|
||||||
<div class="col-md-18 col-sm-18" id="mainNav">
|
|
||||||
<div class="contactInfo hidden-xs"> <a href="/contact-us.htm">Contact us</a> <span class="phoneNumber">USA/CA: 800-2682918</span></div>
|
|
||||||
<div class="menu">
|
|
||||||
<?php
|
|
||||||
$url = get_origin_url();
|
|
||||||
$active_home = '';
|
|
||||||
$active_guide = '';
|
|
||||||
$active_tours = '';
|
|
||||||
$active_mytrip = '';
|
|
||||||
$active_aboutus = '';
|
|
||||||
switch ($url) {
|
|
||||||
case '/':
|
|
||||||
$active_home = 'active';
|
|
||||||
break;
|
|
||||||
case '/guide/':
|
|
||||||
$active_guide = 'active';
|
|
||||||
break;
|
|
||||||
case '/tours/':
|
|
||||||
$active_tours = 'active';
|
|
||||||
break;
|
|
||||||
case '/create-my-trip.htm':
|
|
||||||
$active_mytrip = 'active';
|
|
||||||
break;
|
|
||||||
case '/about-us.htm':
|
|
||||||
$active_aboutus = 'active';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<a href="/" class="<?php echo $active_home; ?>">Home</a>
|
|
||||||
<!-- <a href="/vietnam/" class="<?php echo $active_guide; ?>">Plan Your Trip</a> -->
|
|
||||||
<li class="dropdown dropdown-menu-ah-csk" id="dropdown-menu-ah">
|
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Plan Your Trip<span class="caret"></span></a>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/year.htm">Southeast Asia </a></em>
|
|
||||||
<a href="/tours/year.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/hot-air-balloon-flight-over-bagan.jpg" alt="Hot-air-balloon Flight over Bagan" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/myanmar/">Myanmar</a></em>
|
|
||||||
<a href="/myanmar/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/myanmar-monks.jpg" alt="myanmar" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/vietnam/">Vietnam</a></em>
|
|
||||||
<a href="/vietnam/" class="hidden-xs">
|
|
||||||
<img src="/image/ha-long-bay.jpg" alt="Ha Long Bay" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/cambodia/">Cambodia</a></em>
|
|
||||||
<a href="/cambodia/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/cambodia.jpg" alt="cambodia" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<em><a href="/laos/">Laos</a></em>
|
|
||||||
<a href="/laos/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/laos.jpg" alt="Laos" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/cambodia/angkor-wat-travel-guide.htm">Angkor Wat</a></em>
|
|
||||||
<a href="/cambodia/angkor-wat-travel-guide.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/angkor-wat.jpg" alt="Angkor Wat" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/southeast-asia/ports-and-shore-excursions.htm">Arriving by Cruise</a></em>
|
|
||||||
<a href="/southeast-asia/ports-and-shore-excursions.htm" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/bangkok-excursion.jpg" alt="Bangkok Excursion" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<!-- <a href="/tours/" class="<?php echo $active_tours; ?>">Tours</a> -->
|
|
||||||
<li class="dropdown dropdown-menu-ah-csk">
|
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Tours<span class="caret"></span></a>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-ah" id="dropdown-menu-ah-box">
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/">Top Asia Tours</a></em>
|
|
||||||
<a href="/tours/" class="hidden-xs">
|
|
||||||
<img src="https://data.asiahighlights.com/image/wat-phra-singh.jpg" alt="wat phra singh" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/vietnam.htm">Vietnam Tours</a></em>
|
|
||||||
<a href="/tours/vietnam.htm" class="hidden-xs">
|
|
||||||
<img src="/image/vietnam.jpg" alt="Vietnam Lady" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/thailand.htm">Thailand Tours</a></em>
|
|
||||||
<a href="/tours/thailand.htm" class="hidden-xs">
|
|
||||||
<img src="/image/chiang-mai.jpg" alt="Chiang Mai" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/myanmar.htm">Myanmar Tours</a></em>
|
|
||||||
<a href="/tours/myanmar.htm" class="hidden-xs">
|
|
||||||
<img src="/image/myanmar-lady.jpg" alt="Myanmar Lady" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<em><a href="/tours/japan.htm">Japan Tours</a></em>
|
|
||||||
<a href="/tours/japan.htm" class="hidden-xs">
|
|
||||||
<img src="/image/miyajima-island-of-japan.jpg" alt="miyajima island" class="img-rounded">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<a href="/about-us.htm" class="<?php echo $active_aboutus; ?>">About</a>
|
|
||||||
<a href="/orders/triprequest.htm" class="<?php echo $active_mytrip;?> flow_createTrip">Create My Trip</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,5 +0,0 @@
|
|||||||
<form action="ver_do" method="post">
|
|
||||||
<input type="text" name="name" />
|
|
||||||
<input type="text" name="pa" />
|
|
||||||
<input type="submit" />
|
|
||||||
</form>
|
|
Loading…
Reference in New Issue