45 lines
1.8 KiB
PHTML
Executable File
45 lines
1.8 KiB
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('Contact');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/about.css');
|
|
$this->breadcrumb('<a href="/">Home</a>');
|
|
$this->breadcrumb('<a href="/about">About</a>');
|
|
$this->breadcrumb('Contact');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<?= $this->partial('about/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<div id="content">
|
|
<h2>Contact</h2>
|
|
<div id="offline">
|
|
<p class="title">Mailing address:</p>
|
|
<p>
|
|
Cold and Arid Regions Science Data Center at Lanzhou<br />
|
|
Cold and Arid Regions Environmental and Engineering Research Institute, Chinese Academy of Sciences<br />
|
|
Room 6#1102, Donggang West Road 320, Lanzhou, Gansu, China<br />
|
|
Zip Code: 730000<br />
|
|
E-mail: westdc@lzb.ac.cn<br />
|
|
Tel: +86-931-4967287<br />
|
|
<br />
|
|
</div>
|
|
|
|
<div id="online">
|
|
<p class="title">Online Email</p>
|
|
<p class="note">Send email via this form to our service mailbox.</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>
|