westdc-zf1/application/default/views/scripts/about/contact.phtml

43 lines
1.3 KiB
PHTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$this->headTitle($this->config->title->site);
$this->headTitle('联系我们');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/about.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/about">关于本站</a>');
$this->breadcrumb('联系我们');
$this->breadcrumb()->setSeparator(' > ');
?>
<div class="row">
<div class="span3">
<?= $this->partial('about/navi.phtml'); ?>
</div>
<div class="span9">
<div id="content">
<h2>联系我们</h2>
<div id="offline" class="span4">
<br />
青海省草原总站<br />
西宁市胜利路81号<br />
邮编810008<br />
电话: +86-0971-6153683<br />
<br />
</div>
<div id="online" class="span5">
<p class="note">填写以下信息在线联系我们。</p>
<?php echo $this->form; ?>
<?php if (!empty($this->messages)) : ?>
<div id="message">
<?php
foreach ($this->messages as $info)echo $info;
?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>