Link to blog index from template

if you are referring to the ‘posts page’ as set under dashboard – settings – reading:

<?php 
if( get_option( 'page_for_posts' ) ) { 
  echo get_permalink( get_option( 'page_for_posts' ) ); 
} else { 
  echo home_url(); 
} 
?>