1) Yes, I have enabled “Archives” option
2) My Theme has only “Page Template” and the code is as follows
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<div class="indent">
<div class="title-page01"><h2><?php the_title(); ?></h2></div>
<div class="text-box">
<?php the_content('<p class="serif">Read the rest of this page</p>'); ?>
</div>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>