<?php
/*
Template Name: Archives
*/
?>
<?php get_header();?>
<div id="content">
<div id="content-main">
<div <?php post_class(); ?>>
				<h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
				<p class="post-info"><?php edit_post_link(); ?></p>
				<div class="entry">
				<h2><?php _e('by Categories','mistylook'); ?></h2>
					<ul>
						<?php wp_list_cats('optioncount=1');    ?>
					</ul>
					<h2><?php _e('by Month','mistylook'); ?></h2>
					<ul><?php wp_get_archives('type=monthly'); ?></ul>

				<?php $recent_posts = get_posts( array( 'numberposts' => 50 ) ); ?>

				<?php if ( $recent_posts ) : ?>
					<?php $p_count = is_countable( $recent_posts ) ? count( $recent_posts ) : 0; ?>
					<h2><?php printf( _n( 'Latest Post', 'Last %1$s Posts', $p_count, 'mistylook' ), number_format_i18n( $p_count ) ); ?></h2>
					<ul>
					<?php foreach ( $recent_posts as $post ) : ?>
						<?php setup_postdata( $post ); ?>
						<li><h4><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h4></li>
					<?php endforeach; ?>
					<?php wp_reset_postdata(); ?>
					</ul>
				<?php endif; ?>

				</div>
			</div>
</div><!-- end id:content-main -->
<?php get_sidebar();?>
<?php get_footer();?>