Blogger Pages are finally out

This feature lets you easily publish static information on stand-alone pages. For example, you can create an About This Blog page that discusses the evolution of your blog, or a Contact Me page that provides directions, a phone number, and a map to your location.
(Note: you can create up to 10 pages.)

How to create a Blogger Page?

1. Login to your Blogger Account
2. In the posting Tab you will find an Edit Pages option






3.Click on the New Page button and you will get a new page editor(same as the post editor that you normally use)








 4.You can make the page, in the same way as you create a post.If you want to enable commenting on the page, then you can do so fromthe post options








 In the Pages widget, you can decide which pages will be linked and in what order they will appear. You can also choose whether you want new pages to appear automatically in the Pages widget by checking or unchecking the box to the left of Add new Pages by default.





















 

 

Advanced options:

If you are familiar with the usage of blogger’s conditional tags and want to do something special with the pages, then you can use the following conditional tag for that

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
When condition is true this will be done
</b:if >

If you want to hide the sidebar on the Static Pages, then you can use these conditional tags properly to implement that

Here is the incomplete sample code for the same

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<style type="text/css">
.sidebar-wrapper{display:none;}
</style>
</b:if >
 

This code should be placed above </head> in your template.