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

45 lines
1.8 KiB
PHTML
Raw Normal View History

<?php
$this->headTitle($this->config->title->site);
2013-11-10 08:34:18 +00:00
$this->headTitle('Contact');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/about.css');
2013-11-10 08:34:18 +00:00
$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">
2013-11-10 08:34:18 +00:00
<h2>Contact</h2>
<div id="offline">
2013-11-10 08:34:18 +00:00
<p class="title">Mailing address:</p>
<p>
2013-11-10 08:34:18 +00:00
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 />
2013-11-10 08:34:18 +00:00
Tel: +86-931-4967287<br />
<br />
</div>
<div id="online">
2013-11-10 08:34:18 +00:00
<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>
2009-03-06 03:20:46 +00:00
</div>