39 lines
1.5 KiB
PHTML
Executable File
39 lines
1.5 KiB
PHTML
Executable File
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle('联系我们');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/contact.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/about">关于本站</a>');
|
||
$this->breadcrumb('联系我们');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div id="contactUs"> 联系我们</div>
|
||
<div id="offline">
|
||
<p class="title">离线方式</p>
|
||
<p>
|
||
中国西部环境与生态科学数据中心<br />
|
||
兰州市东岗西路320号<br />
|
||
730000<br />
|
||
E-mail: westdc@lzb.ac.cn<br />
|
||
电话: +86-931-4967287 Ms. 李红星<br />
|
||
<br />
|
||
项目负责人:丁永建(dyj@lzb.ac.cn),<br />
|
||
李新(lixin@lzb.ac.cn)<br />
|
||
数据服务负责人:王建(wjian@lzb.ac.cn)<br />
|
||
技术组长:南卓铜(nztong@lzb.ac.cn)</p>
|
||
</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>
|