2009-03-06 03:20:46 +00:00
|
|
|
|
<?php
|
2012-03-27 14:10:56 +00:00
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle('联系我们');
|
2009-03-06 03:20:46 +00:00
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
2012-03-27 14:10:56 +00:00
|
|
|
|
$this->headLink()->appendStylesheet('/css/about.css');
|
2009-03-06 03:20:46 +00:00
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/about">关于本站</a>');
|
|
|
|
|
$this->breadcrumb('联系我们');
|
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
2012-03-27 14:10:56 +00:00
|
|
|
|
<div id='sidebar'>
|
|
|
|
|
<div id='leftnavi'>
|
|
|
|
|
<?= $this->partial('about/navi.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
<div id="contactUs"> 联系我们</div>
|
|
|
|
|
<div id="offline">
|
|
|
|
|
<p class="title">离线方式</p>
|
|
|
|
|
<p>
|
2012-03-27 14:10:56 +00:00
|
|
|
|
中国西部环境与生态科学数据中心<br />
|
|
|
|
|
中国科学院寒区旱区环境与工程研究所 6#1102<br />
|
|
|
|
|
甘肃省兰州市东岗西路320号<br />
|
|
|
|
|
邮编:730000<br />
|
2009-03-06 03:20:46 +00:00
|
|
|
|
E-mail: westdc@lzb.ac.cn<br />
|
2012-03-27 14:10:56 +00:00
|
|
|
|
电话: +86-931-4967287<br />
|
2009-03-06 03:20:46 +00:00
|
|
|
|
<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>
|