After some study on the new blogger template and its extensive custom programming concepts, I found a way to create dynamic page title
for homepage and inner pages. What’s the use of this snippet? It helps you to have unique page title
for each page including the homepage and thus enhance your SEO
rankings.
Unique Page Title
Snippet for New Blogger Template
<head>
<b:include data=’blog’ name=’all-head-content’>
<b:section class=’header’ id=’header2′ maxwidgets=’1′ showaddelement=’no’>
<b:widget id=’Header2′ locked=’true’ title
=’(Header)’ type=’Header’>
<b:includable id=’main’>
<b:if cond=’data:blog.url == data:blog.homepageUrl’>
<title
>This is Homepage</title
>
<b:else/>
<title
><data:post.title
/><data:blog.pageTitle/></title
>
</b:if>
</b:includable>
</b:widget>
</b:section>
</b:include>





Leave a Reply