Pagination not working on page template

Try add the “page” var to the WP_Query statement

$index_query = new WP_Query(array(
'posts_per_page'=>'3',
'paged'=>max(1 , get_query_var('paged')),
'post_type'=>'post'
));

Is it the loop that is not paging through the posts, (it just displays the same ones no matter what page you are on? Or is the actual pagination just not displaying any links?