<link href="${common_website_static}/static/css/css.css" rel="stylesheet" type="text/css" />
|
<script type="text/javascript">
|
function addFavorite() {
|
var sURL = location.href;
|
var sTitle = document.title
|
try {
|
window.external.addFavorite(sURL, sTitle)
|
} catch(e) {
|
try {
|
window.sidebar.addPanel(sTitle, sURL, "")
|
} catch(e) {
|
alert("加入收藏失败,请使用Ctrl+D进行添加")
|
}
|
}
|
}
|
</script>
|
<div class="top">
|
<div class="logo"><a class="yun_logo" href="#">${Constants.company_name}</a></div>
|
<div class="addition">
|
<ul>
|
<li><a href="javascript:addFavorite()">加入收藏</a></li>
|
<li><a href="#">设为首页</a> <span>|</span></li>
|
</ul>
|
<p></p>
|
</div>
|
</div>
|