create index page on your blog

that allows visitors to view the content of your blog, you can add an index page that will display your posts index

first step, on HTML editor your blog activate 'Expand Template Widget', next step, search script

<b:include data='post' name='post'/>
and replace with the following script

<b:if cond='data:blog.url == &http://YourBlogName.blogspot.com/search?max-results=500&'>
<li><a expr:href='data:post.url'>
<data:post.title/></a></li>
<b:else/>
<b:include data='post' name='post'/></b:if>

use the following link to view the index

<a href='http://YourBlogName.blogspot.com/search?max-results=500'>Index</a>

Problem result pages

you want to display your blog entries on a particular label. but you have a problem with the number of entries with many types of labels that make your blog not too long, neat or indexed downward. to overcome that you can use the following link on the menu link table

<a href="http://yourblogname.blogspot.com/search/label/Labelname?max-results=4">Labelname</a>

with links, if the blog click on the page will display the maximum of your post 4 pages

create search menu in your blog

to beautify and increase the tools you have blog you can add the search menu itself - by using HTML script with the following script

add the previous css script

#searchform {
margin: 0px;
padding: 0px;
overflow: hidden;
display: inline;
}
#sbutt {
background: #000;
color: #FFFFFF;
font-size: 11px;
font-family: Arial, Tahoma, Verdana;
margin: 0px 0px 0px 3px;
padding: 2px;
border: 1px solid #ffffff;
font-weight: bold;
}

next step insert HTML code to any position you want

<form action='/search' id='' method='get' style='display:inline;'><input id='searchform' name='q' size='20' type='text'/> <input id='sbutt' type='submit' value='Go'/></form>