first commit
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>词条搜索 - 动易百科</title>
|
||||
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/public.css" type="text/css">
|
||||
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/default.css" type="text/css">
|
||||
<link rel="stylesheet" href="{PE.SiteConfig.SkinPath/}encyclopedia/index.css" type="text/css">
|
||||
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/jquery.pack.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/slider.js"></script>
|
||||
<!--[if lt IE 9]>
|
||||
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.SkinPath/}encyclopedia/js/DD_belatedPNG_0.0.8a-min-3gmin.js"></script>
|
||||
<![endif]-->
|
||||
<script language="javascript" type="text/javascript" src="{PE.SiteConfig.ApplicationPath/}js/Common.js"></script>
|
||||
<script type="text/javascript">
|
||||
jQuery(function () {
|
||||
var type = "@RequestInt_type";
|
||||
var txt = "";
|
||||
if (type == "1") {
|
||||
txt = "词条";
|
||||
jQuery("#TxtSearch").val("@Request_keyword");
|
||||
} else if (type == "2") {
|
||||
txt = "标签";
|
||||
jQuery("#TxtSearch").val("TAG:@Request_keyword");
|
||||
} else if (type == "3") {
|
||||
txt = "内容";
|
||||
}
|
||||
|
||||
jQuery("#txt_title").html(txt + "“<strong>@Request_keyword</strong>”搜索结果");
|
||||
if (type == "1") {
|
||||
var x = new AjaxRequest('XML', '');
|
||||
x.para = ['name=@Request_keyword'];
|
||||
x.post('checkname', '{PE.SiteConfig.ajaxsitepath/}ajax.aspx?HandlerName=EncyclopediaAjaxHandler', function (s) {
|
||||
var xml = x.createXmlDom(s);
|
||||
var status = xml.getElementsByTagName("status")[0].firstChild.data;
|
||||
if (status != "true") {
|
||||
jQuery("#a_create").attr("href", "CreateDoc.aspx?name=" + escape("@Request_keyword"));
|
||||
jQuery("#div_noResult").show();
|
||||
} else {
|
||||
jQuery("#div_noResult").hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<!--header-->
|
||||
{PE.Label id="互动百科_网站顶部" /}
|
||||
<div class="clear20"></div>
|
||||
<!--main-->
|
||||
<div class="mainBox">
|
||||
<!--alphabetically-->
|
||||
<div class="alphabetically browse">
|
||||
<div class="hd">
|
||||
<h3>按字母顺序浏览</h3>
|
||||
</div>
|
||||
<div class="bd">
|
||||
{PE.Label id="互动百科_通用字母浏览" letter="true" /}
|
||||
<div class="clearbox"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear12"></div>
|
||||
<!--path-->
|
||||
<div class="path">
|
||||
<a href="Index.aspx">动易百科</a>><span>词条搜索</span></div>
|
||||
<!--right-->
|
||||
<div class="funBar fr">
|
||||
<!--category-->
|
||||
<div class="category">
|
||||
<div class="hd">
|
||||
<h3>词条标准规范</h3>
|
||||
</div>
|
||||
<div class="bd standard">
|
||||
<p>不可以是代修饰词的陈述性词语<br/>
|
||||
不可以是短语或句子<br/>
|
||||
不可以是讨论的话题<br/>
|
||||
不可以含有特殊符号和空格<br/>
|
||||
不可以含有错别字<br/>
|
||||
英语词必须是全称<br/>
|
||||
新闻类、技巧类文章不能作为百科词条</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--left-->
|
||||
<div class="conBar fl">
|
||||
<!--cateContent-->
|
||||
<div class="searchEntry">
|
||||
<div class="hd">
|
||||
<h4 id="txt_title"></h4>
|
||||
</div>
|
||||
<div class="cateList">
|
||||
<div id="div_noResult" class="noResult"><span>本站尚未收录词条“<strong>@Request_keyword</strong>”,欢迎您来创建。</span><a id="a_create">创建词条</a></div>
|
||||
<div class="bd">
|
||||
<ul>
|
||||
{PE.Label id="互动百科_通用词条列表" bindStyle="搜索结果列表" outputQty="20" isUsePage="true" linkOpenType="_blank" titleLength="50" listOrderType="@Request_order" type="@RequestInt_type" dayDiff="@RequestInt_dayDiff" inputer="@Request_inputer" keyword="@Request_keyword" /}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ft">
|
||||
<div class="page">{PE.Page id="url_方块样式分页" datasource="互动百科_通用词条列表_搜索结果列表" span="span" unitname="个词条"/}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearbox"></div>
|
||||
</div>
|
||||
<div class="clear12"></div>
|
||||
<!--footer-->
|
||||
<div class="footer">
|
||||
<!--friendlyLinks--><!--copyRight-->
|
||||
{PE.Label id="互动百科_网站底部" /}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user