On Solidblogger, you can see banner sized ads (468*60) on the homepage while individual post pages will show square size ads (336*280 and 300*250). If you want to show different ads on your blog also, you can do this easily by adding a conditional tag.
Show Adsense ads on homepage or individual blog posts on Blogger
To show ads on homepage only, modify your code like this :<b:if cond='data:blog.pageType != "item"'> YOUR ADVERTISEMENT CODE </b:if>
To show ads on individual blog posts only, modify your code like this :<b:if cond='data:blog.pageType == "item"'> YOUR ADVERTISEMENT CODE </b:if>
Show Adssense Ads on Homepage or individual posts only on WordPress blogs
To show ads only on WordPress homepage, modify your code like the following example :<?php if (is_home()) { ?>
YOUR ADVERTISEMENT CODE
<?php } ?>
To show ads only on individual blog posts only, modify code like this :<?php if (is_single()) { ?>
YOUR ADVERTISEMENT CODE
<?php } ?>
Replace YOUR ADVERTISEMENT CODE with your actual Google Adsense ad code. If you want to show the same ads everywhere, simply remove the above conditional tags and keep the advertisement code only.