You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
947 B
PHTML
26 lines
947 B
PHTML
2 years ago
|
<div class="right_tour">
|
||
|
<div class="info_ad_title" style="display: flex;">Popular tours</div>
|
||
|
<div class="right_ad_list">
|
||
|
<ul>
|
||
|
<?php foreach ($tips_right_a as $index => $info) {?>
|
||
|
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li>
|
||
|
<?php }?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="info_ad_title" style="display: flex;">Make the most of your time</div>
|
||
|
<div class="right_ad_list">
|
||
|
<ul>
|
||
|
<?php foreach ($tips_right_b as $index => $info) {?>
|
||
|
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li>
|
||
|
<?php }?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
|
||
|
<div class="right_ad_list">
|
||
|
<ul>
|
||
|
<?php foreach ($tips_right_c as $index => $info) {?>
|
||
|
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li>
|
||
|
<?php }?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|