Post Summaries in Blogger Blogs |
I will try to explain his hack to you guys..
First of all Edit your blogger template
Find this code
</head>and replace it with
Off course you can edit these parameters..
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 230;
summary_img = 140;
img_thumb_height = 100;
img_thumb_width = 100;
</script>
<script src=’http://bloggergadgets.googlecode.com/files/excerpt_min.js’ type='text/javascript'/>
</b:if>
</b:if>
</head>
Now Find
<data:post.body/>Replace it with
And you are done.. now you should have the post summaries on your homepage,search
<b:if cond='data:blog.pageType == "item"'>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType == "static_page"'>
<data:post.body/>
<b:else/>
<div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
createSummaryAndThumb("summary<data:post.id/>");
</script>
<div style='clear: both;'/>
<span style='padding-top:5px;;float:right;text-align:right;'><a
expr:href='data:post.canonicalUrl' rel='bookmark'><b>Read more >>
</b></a></span>
</b:if>
</b:if>
results,archive and label pages..