westdc-zf1/application/default/views/scripts/water/newsletter.phtml

43 lines
1.9 KiB
PHTML
Raw Normal View History

2010-06-23 15:13:26 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle('数据通讯');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/newsletter.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
$this->breadcrumb('数据通讯');
$this->breadcrumb()->setSeparator(' > ');
?>
<?php
foreach ($this->newsletters as $nl){
$name=basename($nl,'.pdf');
list(,$num)=explode("_",$name);
?>
<div class="newsletter">
<a href="/images/newsletter/<?php echo $nl; ?>" target="_blank">
<img src="/images/newsletter/<?php echo $name; ?>.jpg" style="margin-bottom: 10px; margin-right: 10px;" border="0" /></a><br />
<a href="/images/newsletter/<?php echo $nl; ?>" target="_blank"><?php echo $num;?>期数据通讯</a>
</div>
<?php
}
?>
<p style="clear:left;font-size: 110%;">
西部数据中心不定期发布数据通讯,通告中心动态、最新数据、数据工具,以及重要研究进展。</p>
<p>
在下面文本框里输入您的Email地址可以订阅数据中心通讯。当通讯发布时将在第一时间发送到您订阅的Email邮箱里。</p>
<div class="note">
注意,邮件列表发送的邮件,有可能被您的邮箱当成垃圾邮件隔离,所以请设置您的反垃圾邮箱配置。</div>
<?php echo $this->form; ?>
<?php if (!empty($this->messages)) : ?>
<div id="message">
<?php
foreach ($this->messages as $info)echo $info;
?>
</div>
<?php endif; ?>
<div class="note"> 备注:您也可以直接给<a href="mailto:westdc-report-subscribe@lists.westgis.ac.cn">数据通讯</a>发送一封标题为subscribe的邮件进行订阅。
</div>
<br /><br />&nbsp;
</div>