i made a blogger blog some days ago, and now 7 pages have indexed in google, but the problem is when you see the indexed pages this is appearing , every post is showing with the blog title and blog description, i want to show the different title and descriptions for every blog, please tell me how can i do this.
The is a condition that you need to add to the title tag in the template. First go to the template and find <title><data:blogTitle/></title> Code (markup): Then add a condition like this instead of the above line, <b:if cond='data:blog.pageType == "index"'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> Code (markup):
syedakram, try this solution... add this tag; <head> <b:if cond='data:blog.url == data:blog.homepageUrl'> <meta content='YOUR BLOG DESCRIPTION' name='description'/> </b:if> <meta content='YOUR KEYWORDs' name='keywords'/> <b:include data='blog' name='all-head-content'/> <b:if cond='data:blog.pageType == "item"'> <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/><title><data:blog.pageTitle/></title> </b:if> <b:skin><![CDATA[ resolve duplicate meta tag and description issue... work's fined for me..
yo bro.. login to your blogger account and go edit HTML and expand HTML.. search for <head> tag.. Between <head> tag and <b:skin> tag Replace it with this code <b:if cond='data:blog.url == data:blog.homepageUrl'> <meta content='YOUR BLOG DESCRIPTION' name='description'/> </b:if> <meta content='YOUR KEYWORDs' name='keywords'/> <b:include data='blog' name='all-head-content'/> <b:if cond='data:blog.pageType == "item"'> <title><data:blog.pageName/> | <data:blog.title/></title> <b:else/><title><data:blog.pageTitle/></title> </b:if>