ZBLOG 1.4 正式版修改
b_article-single.html
日志内页增加了标签的链接、点击显示以及编辑按钮,增加了返回顶部
<div class="post cate<#article/category/id#> auth<#article/author/id#>">
<div class="post-nav"><#template:article_navbar_l#><#template:article_navbar_r#></div>
<h4 class="post-date"><#article/posttime#></h4>
<h2 class="post-title"><#article/title#></h2>
<div class="post-body"><#article/content#></div>
<h5 align="right" class="post-tags"><a href="http://www.likk.com/blog/tags.asp"><#ZC_MSG138#></a>: <#template:article_tag#></h5>
<h6 class="post-footer">
<#ZC_MSG011#>:<a href="../catalog.asp?auth=<#article/author/id#>"><#article/author/name#></a> | <#ZC_MSG012#>:<a href="../catalog.asp?cate=<#article/category/id#>"><#article/category/name#></a> | <a href="../cmd.asp?act=ArticleEdt&id=<#article/id#>">编辑</a> | <a href="../post/<#article/id#>.html#Comment"><#ZC_MSG013#></a>:<#article/commnums#> | <#ZC_MSG014#>:<#article/trackbacknums#> | <#ZC_MSG130#>:<script type="text/javascript" src="../c_count_js.asp?id=<#article/id#>&act=view"></script> | <a href="#top" title="返回顶部">↑TOP</a>
</h6>
</div>
<ul class="msg trackback">
<li class="tbname"><#ZC_MSG145#>:</li>
<li class="msgarticle"><span style="cursor:hand;" id="tbURL" onClick="CopyText(document.all.tbURL)" title="Click to Copy It"><#article/trackback_url#></span></li>
</ul>
<#template:article_trackback#>
<#template:article_comment#>
<#template:article_commentpost#>
b_article-multi.html
首页部分
增加了标签的链接、阅读全文链接及编辑按钮,将只显示日期改为显示具体时间,没增加点击显示,增加了返回顶部
<div class="post cate<#article/category/id#> auth<#article/author/id#>">
<h4 class="post-date"><#article/posttime#></h4>
<h2 class="post-title"><a href="<#article/url#>"><#article/title#></a></h2>
<div class="post-body"><#article/intro#><br>
</div>
<h5 align="right" class="post-tags"> | <a href="<#article/url#>">阅读全文</a> | <a href="http://www.likk.com/blog/tags.asp"><#ZC_MSG138#></a>: <#template:article_tag#></h5>
<h6 class="post-footer">
<#ZC_MSG011#>:<a href="catalog.asp?auth=<#article/author/id#>"><#article/author/name#></a> | <#ZC_MSG012#>:<a href="catalog.asp?cate=<#article/category/id#>"><#article/category/name#></a> | <a href="cmd.asp?act=ArticleEdt&id=<#article/id#>">编辑</a> | <a href="post/<#article/id#>.html#Comment"><#ZC_MSG013#></a>:<#article/commnums#> | <#ZC_MSG014#>:<#article/trackbacknums#> | <#ZC_MSG130#>:<script type="text/javascript" src="http://www.likk.com/blog/c_count_js.asp?id=<#article/id#>&act=pre"></script> | <a href="#top" title="返回顶部">↑TOP</a>
</h6>
</div>
加Referer
single.html
<div class="function" id="divPrevious">
<h3>Referer</h3><script language="javascript" src="../STAT/feeler.asp?showType=1"></script></div>
</div>
default.html
<div class="function" id="divPrevious">
<h3>Referer</h3><script language="javascript" src="http://www.likk.com/blog/STAT/feeler.asp?showType=1"></script></div>
</div>
</div>
<div id="divBottom">
取消当前样式和当前语言
屏蔽c_system_event.asp的这两行
'strStatistics=strStatistics & "<li>"& ZC_MSG083 &":" & ZC_BLOG_CSS & "</li>"
'strStatistics=strStatistics & "<li>"& ZC_MSG084 &":" & ZC_BLOG_LANGUAGE & "</li>"
把rss标示移到后面
c_system_event.asp
If ZC_CATE_RSS_IMAGE = False Then
strCatalog=strCatalog & "<li><a href="""& ZC_BLOG_HOST &"XML/"&Categorys(objRS("cate_ID")).ID&".xml""><img src="""& ZC_BLOG_HOST &"IMAGE/LOGO/rss3.gif"" width=""27"" height=""12"" alt=""Catalog RSS"" /></a> <a href="""& Categorys(objRS("cate_ID")).Url & """>"+Categorys(objRS("cate_ID")).Name + " (" & Categorys(objRS("cate_ID")).Count & ")" +"</a></li>"
Else
strCatalog=strCatalog & "<li><a href="""& Categorys(objRS("cate_ID")).Url & """>"+Categorys(objRS("cate_ID")).Name + " (" & Categorys(objRS("cate_ID")).Count & ")" +"</a> [<a href="""& ZC_BLOG_HOST &"XML/"&Categorys(objRS("cate_ID")).ID&".xml"">RSS</a>]</li>"
End If