To make your blog more search engine friendly (and more friendly to your viewers), you can change your base template in your blog to:
  • Display only the blog name for the home page's page title
  • Display the category name and blog name as the page title on category pages
  • Display only the article title for the page title when viewing an article.
To do this, edit your base template and replace the line that begins with <title> with the following:
 
<title>{{if article.categories}}{{if page.title}}{{page.title}}{{/if}}{{elsif category.label}}{{if category.label eq "Main Page"}}{{blog.name}}{{else}}{{category.label}} :: {{blog.name}}{{/if}}{{/if}}</title>

Save your changes to the template and it will be reflected in your blog.