File: /home/slyfwmm/foar/wp-content/themes/flexfit/page-archives.php
<?php
/*
Template Name: Archives Page
*/
?>
<?php get_header(); ?>
<div id="page" class="border-top clearfix">
<div id="subtitle">
<h1><?php the_title(); ?></h1>
<div id="breadcrumb"><?php the_breadcrumb(); ?></div>
<div class="hr4"><span class="seperator"></span><span class="lightborder"></span></div>
</div>
<div id="content-part">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<h4><?php _e('Latest Posts', 'framework'); ?></h4>
<ul>
<?php $archives = get_posts('numberposts=10'); foreach($archives as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title();?></a></li>
<?php endforeach; ?>
</ul>
<div class="hr"></div>
<h4><?php _e('Browse by Category', 'framework'); ?></h4>
<ul>
<?php wp_list_categories( 'title_li=' ); ?>
</ul>
<div class="hr"></div>
<h4><?php _e('Browse by Month', 'framework'); ?></h4>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php wp_link_pages(); ?>
<?php endwhile ?>
<?php endif ?>
</div>
<div id="sidebar" class="sidebar-right">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>