EN PT ES
By default Blogger displays the blog title first, followed by the name of the post. As you might notice this is not good when it comes to SEO. It's important for the name of the post to come before the name of your blog, especially when it comes to google search results. Learn how to make your post title show up first so that you can reel in more traffic from the search engines.
How to Change the Titles: Go to Layout>edit HTML in your Blogger dashboard. Search for this tag: <title><data:blog.pageTitle/></title> Replace this tag with the following code:
<b:if cond='data:blog.pageType == "index"'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/> | <data:blog.title/></title> </b:if>
Save your template and you should see the results in your web browser. It may take a few days for the changes to show up on the google search results. You will start receiving more traffic from google once you are re-indexed.
EN PT ES