Howdy Gang
I'm editing the HTML of my Blogger template in order to make the title tags SEO optimized.
*** NEW MODIFICATION TO POST***
I was following the coding examples in this download from RRW : Quick Blogger SEO Code Mods
In this pdf I was told to remove these lines of code from the original template:
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:skin><![CDATA[
and replace them with this:
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType="index"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<b:skin><![CDATA[/*
Now, what this is meant to do is to make my title tags SEO optimized (possibly something similar to Wordpress's %postname% custom structure in the permalinks - I'm not sure)
But...
When I went to preview the changes I got this message from Blogger:
" Extra characters at end of string: buf=[="index"] remainder=[] " (excluding the quote marks)
I cannot, for the life of me, find out where I'm going wrong!
Any coders out there see where my error is?
Cheers