Merge branch 'develop'

master
cyc 8 years ago
commit 722f55d742

@ -141,7 +141,26 @@ class Tags_analysis {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_left_menu', $list, true);
$data['detail']->ic_content = str_replace('@INFO-LEFT-MENU@', $pd_booking_from, $data['detail']->ic_content);
}
//新 左侧导航
if (strpos($data['detail']->ic_content, '@INFO-NEW-LEFT-MENU@') !== false) {
$list_new_left_menu = "";
$is_path = explode(",", $data['detail']->is_path);
$list_new_left_menu["is_path"] = $is_path;
$list_new_left_menu["level_1"] = $this->CI->Information_model->get_detail($is_path[1]);
$list_new_left_menu["level_2"] = $this->CI->Information_model->get_same_level($is_path[1],10);//home 的下一级菜单 比如Myanmar
foreach ($list_new_left_menu["level_2"] as $v_level_key => $v_level_2) {
$list_new_left_menu["level_2"][$v_level_key]->level_3=$this->CI->Information_model->get_same_level($v_level_2->is_id,10);
foreach ($list_new_left_menu["level_2"][$v_level_key]->level_3 as $v_level_key_3 => $v_level_3) {
//第3级子级是一个文件夹点进去的时候对应到相应的链接或是没有对应的链接就默认进入第3级子级下的1个页面;如果level_3没有连接就用level_4第一个
$list_new_left_menu["level_2"][$v_level_key]->level_3[$v_level_key_3]->level_4=$this->CI->Information_model->get_same_level($v_level_3->is_id,1);
}
}
// var_dump($list["level_2"]);die;
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_new_left_menu', $list_new_left_menu, true);
$data['detail']->ic_content = str_replace('@INFO-NEW-LEFT-MENU@', $pd_booking_from, $data['detail']->ic_content);
}
//底部推荐
if (strpos($data['detail']->ic_content, '@INFO-YOU-MAY-LIKE@') !== false) {
$meta_recommend_info = $this->CI->InfoMetas_model->get($data['detail']->ic_id, 'meta_recommend_info');
@ -162,12 +181,21 @@ class Tags_analysis {
}
//面包屑 home > 父级链接 >本页
if (strpos($data['detail']->ic_content, '@INFO-CRUMBS@') !== false) {
$list["oneself"]=$this->CI->Information_model->get_detail($data['detail']->is_id);
$list["parent"]=$this->CI->Information_model->get_detail($data['detail']->is_parent_id);
$list["oneself"]=$this->CI->Information_model->get_detail($data['detail']->is_id);
$path = explode("," , $list["oneself"]->is_path);
foreach ($path as $value) {
if(!empty($value)){
$parent=$this->CI->Information_model->get_detail($value);
if(!empty($parent->ic_url)){
$list["parents"][] = array("ic_url"=>$parent->ic_url,"ic_url_title"=>$parent->ic_url_title);
}
}
}
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/info/info_crumbs', $list, true);
$data['detail']->ic_content = str_replace('@INFO-CRUMBS@', $pd_booking_from, $data['detail']->ic_content);
}
//
//Quick Inquiry contactus 联系我们
if (strpos($data['detail']->ic_content, '@BOOKING-QUICK-INQUIRY@') !== false) {
$pd_booking_from = $this->CI->load->view(CONST_SITE_CODE .'/forms/booking_quick_inquiry', $data, true);
$data['detail']->ic_content = str_replace('@BOOKING-QUICK-INQUIRY@', $pd_booking_from, $data['detail']->ic_content);

@ -64,7 +64,7 @@ class Information_model extends CI_Model {
function get_same_level($is_parent_id,$num=5){
$this->init();
$this->top_num=$num;
$this->cols="is1.is_sort,ic.ic_url,ic_url_title";
$this->cols="is1.is_sort,ic.ic_url,ic_url_title,is_id";
$this->ic_url_is_id="AND is1.is_parent_id=".$this->HT->escape($is_parent_id);
$this->order_by="ORDER BY is_sort ASC";
return $this->get_list();

@ -1,3 +1,11 @@
<div class="crumbNav">
<a href="/">Home</a> <a href="<?php echo $parent->ic_url;?>"><?php echo $parent->ic_url_title;?></a><?php echo $oneself->ic_url_title;?>
<?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>

@ -0,0 +1,18 @@
<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>

@ -0,0 +1,118 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asia Highlights</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">
<link href="/css/global.min.css" rel="stylesheet">
<link href="/css/basic.css" rel="stylesheet">
<link href="/css/ah-guides.css" rel="stylesheet">
<script src="/js/jquery-1.8.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<!--#include virtual="/aspbackup/inc/header.asp" -->
<div id="banner">
<img src="/image/tour/monks-walking-mandalay-myanmar.jpg" alt="Monks walking in the morning to receive alms" class="img-responsive" />
<div class="container">
<div class="col-md-24 col-sm-24 col-xs-24">
<h1>
Myanmar Tours
</h1>
</div>
</div>
</div>
<!--wozhedoushiweiledingweia-->
<div class="aboutAH">
<div class="container">
<div class="crumbNav">
<a href="/">Home</a>Top Tours
</div>
<div class="col-md-7 col-sm-7 hidden-xs">
<ul class="sideNav">
<li><a href="#">Laos Travel Guide</a></li>
<li><a href="#">Laos Travel Guide</a></li>
<li><a href="#">Laos Travel Guide</a></li>
<li><a href="#">Laos Travel Guide</a></li>
<li><a href="#">Laos Travel Guide</a></li>
</ul>
</div>
<div class="col-md-17 col-sm-17 col-xs-24">
<p>Having just begun in 2010 to admit western travelers within its borders, Myanmar is the last frontier of Indochina to bear minimal western influence. Today it represents the real, rare, original Indochina, of special interest to travelers. Men here still wear the traditional longyi (a loincloth) and towns and villages are decorated by thousands of ancient stupas (domed monuments).</p>
<div class="guideBlock">
<span class="guide1"></span>
<span class="guideName green">Ko Ko Aye Kyaw</span>
<span class="guideTitle">Tour Guide</span>
<p>The Wat Xieng Thong, Royal Palace Museum and Mount Phou Si are the
highlights of the old town charm. For visitors who are keen on
adventure and outdoor activities, the ideal places to go are the Kuang
Si Falls, Pak Ou Caves and the Elephant Village. </p>
</div>
<div class="guideBlock onRight">
<span class="guide2"></span>
<span class="guideName blue">Ko Ko Aye Kyaw</span>
<span class="guideTitle">Tour Guide</span>
<p>The Wat Xieng Thong, Royal Palace Museum and Mount Phou Si are the
highlights of the old town charm. For visitors who are keen on
adventure and outdoor activities, the ideal places to go are the Kuang
Si Falls, Pak Ou Caves and the Elephant Village. </p>
</div>
<div class="guideBlock">
<span class="guide3"></span>
<span class="guideName orange">Ko Ko Aye Kyaw</span>
<span class="guideTitle">Tour Guide</span>
<p>The Wat Xieng Thong, Royal Palace Museum and Mount Phou Si are the
highlights of the old town charm. For visitors who are keen on
adventure and outdoor activities, the ideal places to go are the Kuang
Si Falls, Pak Ou Caves and the Elephant Village. </p>
</div>
<div class="guideBlock onRight">
<span class="guide4"></span>
<span class="guideName pink">Ko Ko Aye Kyaw</span>
<span class="guideTitle">Tour Guide</span>
<p>The Wat Xieng Thong, Royal Palace Museum and Mount Phou Si are the
highlights of the old town charm. For visitors who are keen on
adventure and outdoor activities, the ideal places to go are the Kuang
Si Falls, Pak Ou Caves and the Elephant Village. </p>
</div>
<h2>Our Cars in Myanmar</h2>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="cars">
<img src="/image/guides/our-car.png" class="img-responsive"> <p>Presently, passengers have three choices to get into
Vietnam from China by train: a bi-weekly train
connecting Beijing and Hanoi. </p> </div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="cars">
<img src="/image/guides/our-car.png" class="img-responsive"> <p>Presently, passengers have three choices to get into
Vietnam from China by train: a bi-weekly train
connecting Beijing and Hanoi. </p> </div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="cars">
<img src="/image/guides/our-car.png" class="img-responsive"> <p>Presently, passengers have three choices to get into
Vietnam from China by train: a bi-weekly train
connecting Beijing and Hanoi. </p> </div>
</div>
<div class="col-md-12 col-sm-12 col-xs-24">
<div class="cars">
<img src="/image/guides/our-car.png" class="img-responsive"> <p>Presently, passengers have three choices to get into
Vietnam from China by train: a bi-weekly train
connecting Beijing and Hanoi. </p> </div>
</div>
</div>
</div>
</div>
</div>
<!--#include virtual="/aspbackup/inc/info-footer.asp" -->
</body>
</html>

@ -0,0 +1,35 @@
@charset "utf-8";
/* CSS Document */
body { background:#f1f1f1;}
#banner { display: block; position: relative; }
#banner h1 { position: absolute; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; font-size: 28px; bottom: 0; width: 100%; padding: 15px; text-align: center; left: 0; color: #fff; border-radius: 4px 4px 0 0; margin: 0; }
h2 { font-style: Trebuchet MS; font-size:26px; margin: 0 0 35px;}
a { text-decoration: none;}
@media(max-width:750px) {
#banner h1 { background: none !important; color:#555 !important; position:static !important; font-size:20px !important}
}
#banner { display: block; position: relative; }
#banner span { position: absolute; right: 10%; text-align: right; display: block; top: 25px; font-size: 38px; color: #fff; text-shadow: 2px 2px 2px #333; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; }
#banner h1 { position: absolute; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; font-size: 28px; bottom: 0; width: 100%; padding: 15px; text-align: center; left: 0; color: #fff; border-radius: 4px 4px 0 0; margin-bottom: 1px !important; }
.crumbNav { text-align: right; margin: 25px 0; font-size: 11px; color: #a31022; }
.crumbNav a { background: url(/image/arrow.png) no-repeat right 3px; padding-right: 10px; margin-right: 10px; color: #555; }
.guideBlock { display: block; background:#fff; border-radius:4px; padding:40px; margin:30px 0 50px; position:relative; padding-left:280px;}
.guideBlock.onRight { padding:40px 280px 40px 40px !important;}
.guideBlock .guideName { font-family: Georgia, "Times New Roman", Times, serif; font-size:35px;display: block; font-style:italic;}
.guideBlock .guideName.green { color:#247258;}
.guideBlock .guideName.blue { color:#3b25ab;}
.guideBlock .guideName.orange { color:#ed8a20;}
.guideBlock .guideName.pink { color:#93477a;}
.guideBlock .guideTitle { font-size:20px; display: block; margin:0 0 20px; color:#999; }
.guide1 { background:url(/image/guides/guide-1.png) no-repeat; display: block; width:234px; height:316px; position:absolute; left:0; bottom:0;}
.guide2 { background:url(/image/guides/guide-2.png) no-repeat; display: block; width:292px; height:323px; position:absolute; right:0; bottom:0;}
.guide3 { background:url(/image/guides/guide-3.png) no-repeat; display: block; width:229px; height:326px; position:absolute; left:0; bottom:0;}
.guide4 { background:url(/image/guides/guide-4.png) no-repeat; display: block; width:274px; height:327px; position:absolute; right:0; bottom:0;}
.cars { display: block; margin-bottom:40px;}
.cars img { margin-bottom:15px;}
/* side nav */
.sideNav { display: block; border-top:3px solid #a31022;}
.sideNav li { border-bottom:1px solid #d1d1d1; background:url(/pic/square-gray-8x8.png) no-repeat 10px center; line-height:20px; padding:10px 0 10px 30px; font-size:14px;}

@ -284,4 +284,45 @@ a:hover { text-decoration: none; color: #b61326; }
}
/* may you like*/
.YouMayLike{margin-left: 0px;margin-bottom: 40px;margin-top: -15px;}
.YouMayLike .infoList{height: 70px;overflow: hidden;}
.YouMayLike .infoList{height: 70px;overflow: hidden;}
/*csk 2017-04-11 用于新的左导航样式*/
.left_menu{
margin-bottom: 20px;
margin-right: 0px;
}
.left_menu li{
padding: 5px;
}
.left_menu .level_one{
border-top: 3px solid #c6162b;
border-bottom: 1px solid #d6d6d6;
font: 20px weight;
background: #ccc;
display: block;
padding-left: 5px;
}
.left_menu .level_tow{
border-bottom: 1px solid #d6d6d6;
font: 16px weight;
background: #e6e6e6;
}
.left_menu>a>li{
border-bottom: 1px #d6d6d6 solid;
height: 37px;
padding-top: 7px;
background: url(/image/info-list.png) no-repeat left;
padding-left: 15px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px !important;
white-space: nowrap;
}
.left_menu>a .activated{
background: #a31022;
background-image:url(/image/info-list.png) no-repeat left;
color: #ffffff;
_background: url(/image/info-list.png) no-repeat left,url(/pic/red-arrow.png) no-repeat right;
}
/*csk 2017-04-11 用于新的左导航样式*/

@ -1 +1,395 @@
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url><loc>https://www.asiahighlights.com/tours/china-and-vietnam-highlights-tour.htm</loc><lastmod>2016-03-15T02:28:13+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/tours/vietnam-exploration-tour-with-beach-free-days.htm</loc><lastmod>2016-03-15T02:27:54+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/tours/vietnam-classic-wonders-with-sapa.htm</loc><lastmod>2016-03-15T02:27:37+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/tours/best-of-vietnam-with-mekong-delta.htm</loc><lastmod>2016-03-15T02:26:23+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/</loc><lastmod>2016-03-14T22:21:03+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/vietnam/enter-vietnam.htm</loc><lastmod>2016-03-14T22:20:06+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/vietnam/get-to-vietnam.htm</loc><lastmod>2016-03-14T22:19:41+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/vietnam/planning-a-vietnam-trip.htm</loc><lastmod>2016-03-14T22:19:14+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/vietnam/top-things-to-do.htm</loc><lastmod>2016-03-14T22:18:42+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/guide/</loc><lastmod>2016-03-14T22:17:24+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/tours/</loc><lastmod>2016-03-14T22:01:54+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/about-us.htm</loc><lastmod>2016-03-14T21:46:33+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/terms-of-use.htm</loc><lastmod>2016-03-14T21:15:54+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/privacy.htm</loc><lastmod>2016-03-14T21:15:07+08:00</lastmod></url><url><loc>https://www.asiahighlights.com/contact-us.htm</loc><lastmod>2016-03-13T22:48:41+08:00</lastmod></url></urlset>
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>
https://www.asiahighlights.com/tours/ah-1.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-2.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-3.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-4.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-5.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-6.htm
</loc>
<lastmod>2016-03-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-7.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-8.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-9.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-10.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-11.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-12.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/ah-13.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/about-us.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/terms-of-use.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/privacy.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/vietnam/planning-a-vietnam-trip.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/vietnam/enter-vietnam.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/vietnam/get-to-vietnam.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/vietnam/top-things-to-do.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/vietnam/
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/laos/
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/angkor-wat-travel-guide.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/southeast-asia/ports-and-shore-excursions.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/myanmar.htm
</loc>
<lastmod>2016-06-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/tours/year.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/plan-a-first-time-trip.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/top-things-to-do.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/how-to-get-to.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/best-time-to-visit.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/balloon-flights-over-bagan.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/how-to-book-a-balloon-in-bagan.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/top-beaches.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/trekking-in-kalaw.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/myanmar/myanmar-or-burma.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/top-reasons-to-visit-angkor-wat.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/angkor-or-bagan.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/how-to-plan-a-trip-to-angkor-wat.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/plan-a-trip-to-siem-reap.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/top-things-to-do-in-siem-reap.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/cambodia/visa-types-and-application.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/laos/how-to-plan-a-luang-prabang-trip.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/laos/best-time-to-go.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/laos/how-to-get-a-visa.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>
https://www.asiahighlights.com/laos/top-things-to-do-in-luang-prabang.htm
</loc>
<lastmod>2016-11-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
Loading…
Cancel
Save