By default, when you click a category on your blogger blog, it will show the post titles and contents. Like this:
But what if you have like 100 articles in one category? Not all posts will be displayed in one page right? So now I will guide you on how to show only post titles on your blog category (the simple way).
1. Follow this guide on How to Edit Your Blogger Template
2. Find(CTRL+F) <b:include data='post' name='post'/>
3.Replace the code with:
(Type 1) If you want the results to only display the titles like this,
Replace the code with:
<!-- Show Only Titles Type 1 Start-->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<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>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<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>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
(Type 2) If you want a more professional look like this,
Replace the code with:
<!-- Show Only Titles Type 2 Start-->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<ul><li><a expr:href='data:post.url'><data:post.title/></a></li></ul>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<ul><li><a expr:href='data:post.url'><data:post.title/></a></li></ul>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
(Type 3) If you want a more professional look but with bigger font like this,
Replace the code with:
<!-- Show Only Titles Type 3 Start-->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<ul><h1><li><a expr:href='data:post.url'><data:post.title/></a></li></h1></ul>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != "item"'>
<ul><h1><li><a expr:href='data:post.url'><data:post.title/></a></li></h1></ul>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<!-- Show Only Titles End http://ilook12.blogspot.com -->
4. Click Save Template
Spoilers: If you used Type 2, your categories will be similar to DailyBlogTips