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

45 lines
1.7 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">
<p class="title">离线方式</p>
<p>
中国西部环境与生态科学数据中心<br />
中国科学院寒区旱区环境与工程研究所 6#1102<br />
甘肃省兰州市东岗西路320号<br />
邮编730000<br />
E-mail: westdc@lzb.ac.cn<br />
电话: +86-931-4967287<br />
<br />
</div>
<div id="online">
<p class="title">在线联系</p>
<p class="note">请填写以下表单系统会自动发送到westdc邮箱里</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>