add heihe layout header

This commit is contained in:
wlx 2011-10-21 09:06:17 +00:00
parent 2ef5926b67
commit c578062235
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<div id="divLogo">
<a href="/"><img src="/images/heihe-logo1.png" alt="Heihe Logo" /></a>
</div>
<div id="divNavi">
<ul>
<!-- CSS Tabs -->
<li><a href="/"><span>首页</span></a></li>
<!-- <li><a href="/news"><span>新闻动态</span></a></li> -->
<li><a href="/data"><span>数据产品与服务</span></a></li>
<li><a href="/review"><span>元数据评审</span></a></li>
<li><a href="/knowledge"><span>知识积累平台</span></a></li>
<li><a href="/community"><span>合作与交流</span></a></li>
<li><a href="/about"><span>关于本站</span></a></li>
</ul>
<div id="userNavi">
<?php
$auth = Zend_Auth::getInstance();
if($auth->hasIdentity())
{
$user = $auth->getIdentity();
echo '<a href="/account/edit">'.$user->username.'</a> ';
if ($user->usertype=="administrator") echo '<a href="/admin">后台管理</a> ';
echo '<a href="/data/order">数据篮</a> <a href="/account/logout">注销</a>';
} else {
echo '<a href="/account/login">登录</a> <a href="/account/register">注册</a>';
}
?>
</div>
</div>