If you are having difficulty creating a Site Map in Blogsome, these tips should help.
On your Dashboard, go to Manage > Pages and click the button that says ‘Create new page’. (If you have already created a Site Map but it is not working, select ‘Edit’.)
In the box marked ‘Page Title’, type ‘Site Map’.
Leave the box marked ‘Page Content’ blank. This is important.
If you already had something written in the ‘Page Content’ area, erase it. Then go to Manage > Hacks and click ‘Clear cache’.
Return to Dashboard and go to Manage > Files. Select the file called ‘index.html’.
In your ‘index.html’ file, find the main content div.
Find the bit that says {$content) and put the following piece of code immediately after it.
{if $smarty.server.REQUESTURI == '/sitemap/'}
<h2>Site map</h2
<ul>{wplistpages}</ul>
<h2>Categories</h2>
<ul>{listcats optionall='1' all='All' sortcolumn='name' optioncount='0' children='0'}</ul>
<h2>Posts</h2>
<ul>{getarchives type='postbypost' limit='' format='html'}</ul>
{/if}
Click ‘update template’.
View your Site Map, which should now be working fine.