Posts Tagged ‘blogger hack’

Deconstructing Blogger Beta HTML Template Editing

Friday, May 18th, 2007

Original article: http://www.wilkinsons.com/Bananna/2006/08/deconstructing-blogger-beta-html.html#

It is a useful as you are going to create your own blogger templates.

Another useful information source is Blogger Help: http://help.blogger.com/bin/topic.py?topic=8911

Display only titles when you select label/archive page in Blogger

Sunday, May 6th, 2007

Go to Template,choose Edit HTML, tick on Expand Widget Templates.

Find the code

<b:include data=’post’ name=’post’/>

Replace it with

<b:if cond=’data:blog.homepageUrl !=
data:blog.url’>
<b:if cond=’data:blog.pageType != “item”‘>
<a expr:href=’data:post.url’>
<data:post.title/></a><br/><br/>
<b:else/>
<b:include data=’post’ name=’post’/>
</b:if>
<b:else/>
<b:include data=’post’ name=’post’/>
</b:if>

That is all, more details can be found here.