47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
|
<?php echo $this->fetch('library/page_header.html'); ?>
|
||
|
<link rel="stylesheet" type="text/css" href="<?php echo $this->_var['tpl']; ?>css/room.css">
|
||
|
|
||
|
<div class="mainArea">
|
||
|
<div class="wrap b-box">
|
||
|
<div class="titleBox clearfix">
|
||
|
<h2><em>SERVICE</em><strong>服務項目</strong></h2>
|
||
|
</div>
|
||
|
<div class="contentBox clearfix">
|
||
|
<div class="g-tl-12 leftBox">
|
||
|
<h1 class="articleTitle"><?php echo $this->_var['room']['name']; ?></h1>
|
||
|
<div class="Img"><img src="<?php echo $this->_var['room']['image1']; ?>"></div>
|
||
|
|
||
|
<ul class="side_album clearfix">
|
||
|
<?php $_from = $this->_var['rm_gallery_list']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('', 'rm_gallery');$this->_foreach['rm_gallery'] = array('total' => count($_from), 'iteration' => 0);
|
||
|
if ($this->_foreach['rm_gallery']['total'] > 0):
|
||
|
foreach ($_from AS $this->_var['rm_gallery']):
|
||
|
$this->_foreach['rm_gallery']['iteration']++;
|
||
|
?>
|
||
|
<li class="b-box"><a class="titan-lb" data-titan-group="gallery" data-fancybox="group" rel="fancybox-thumb" href="<?php echo $this->_var['rm_gallery']['img_url']; ?>" title=""><img src="<?php echo $this->_var['rm_gallery']['img_url']; ?>" ></a></li>
|
||
|
<?php endforeach; endif; unset($_from); ?><?php $this->pop_vars();; ?>
|
||
|
</ul>
|
||
|
|
||
|
<div class="tab clearfix">
|
||
|
<a href="#intro" class="current">服務說明</a>
|
||
|
<a href="#notice">注意事項</a>
|
||
|
</div>
|
||
|
<ul class="tabContent">
|
||
|
<li id="intro">
|
||
|
<div class="textEditor">
|
||
|
<?php echo $this->_var['room']['intro']; ?>
|
||
|
</div>
|
||
|
</li>
|
||
|
<li id="price">
|
||
|
</li>
|
||
|
<li id="notice">
|
||
|
<div class="textEditor">
|
||
|
<?php echo $this->_var['room']['notice']; ?>
|
||
|
</div>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php echo $this->fetch('library/page_footer.html'); ?>
|