2006/10/09

讓Beta版的首頁只顯示部份內文

這是免include css,js的精簡版

1.修改Template的 Edit HTML
2.找出
<p><data:post.body/></p>

3.換成
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
<p><data:post.body/>
<br/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><br/>[Full Post]</a>
<b:else/>
<data:post.title/>
</b:if>
</p>
</b:if>


4.以後post new blog只要加上,就可以隱藏其span內的文字
<span class="fullpost"></span>

以上源自[水瓶子]

0 comments: