2009年5月31日 星期日

Blogger 標籤/搜尋頁面只列出標題

參考: http://abintech.azhai.org/2007/03/simply-result-of-label-and-search.html

1. html編輯 -> 展開小裝置
2. 搜尋程式碼


<b:loop var="post" values="data:posts">
<b:if cond="data:post.dateHeader">
<h2 class="date-header"><?xml:namespace prefix = data /><data:post.dateheader></data:post.dateheader></h2>
</b:if>
<b:include name="post" data="post"></b:include>
<b:if cond="'data:blog.pageType">

<b:if cond="data:post.allowComments">
<b:include name="comments" data="post"></b:include>
</b:if>
</b:if>
</b:loop>



3.把紅色的部分替換成


<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType == "index"'>
<!-- Show article title only -->
<h3 class='post-title'><a expr:href='data:post.url'><data:post.title/></a></h3>
<b:else/>

<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>


4.完成

沒有留言: