The new blog4Umbraco package is an excellent choice for anyone
wanting an umbraco powered blogging site. There are however a
couple of small changes that can be made to improve the rankings
and click throughs to your site.
The first change I have made is to include a new tab on each
DocType called "SEO". On this tab I have added two items,
Page Title and Meta Description.

When Google (or any other search engine for that matter) indexes
your site, they typically (but not always) use the value inside the
meta description tag as the description shown in the search result,
however when no meta description is supplied the search engine will
choose what it considers to be the most relevant text.

In the example above you can see that because I didn't have a
Meta Description tag, Google chose the text from the most recent
blog to show in the search result. There are two potential
issues here. Firstly if you blog on a variety of topics as I
do, the description shown may not be related to what the user was
searching for, meaning they might skip over your search result to
another seemingly more relevant result.
Secondly if you want your page to rank for a particular topic
(such as umbraco), having a specific description related to the
topic will act as a strong indicator to Google about the
purpose/context of the page.
Simply add the following code to the BlogMaster template and add
the metaDescription field to your doctypes and you are all set.
<umbraco:Item field="metaDescription" runat="server"
insertTextBefore="<meta name="description"
value="" insertTextAfter=""
/>"></umbraco:Item>
SEO Change #2
The other change I like to make is to the Archive page, or more
importantly the BlogFullArchive.xslt file.
Find the line that says:
<li><a
href="{umbraco.library:NiceUrl(@id)}"><xsl:value-of
select="@nodeName"/></a> <br/>
and then insert the following after:
<xsl:value-of select="data [@alias =
'metaDescription']"/><br />
This helps put a little more content (and context) on the
Archive page and is more likely to make it rank strongly.
Google Sitemap
Finally don't forget to add a Google Sitemap to
your site and submit it in webmaster tools.