File: /home/sinanpasha/ru.sinanpasha.org/wp-content/themes/pulse/template-archives.php
<?php
/*
Template Name: Archives Page
*/
?>
<?php get_header(); ?>
<div id="main" role="main">
<?php while (have_posts()) : the_post(); ?>
<div class="post_header">
<h1 class="title">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wpzoom' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h1>
<div class="header_meta">
<?php edit_post_link( __('Edit', 'wpzoom'), '<span>', '</span>'); ?>
</div>
<div class="clear"></div>
</div>
<div class="post">
<div class="entry">
<div class="col_arch">
<div class="left">
<?php _e('By Months:', 'wpzoom'); ?>
</div>
<div class="right">
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1') ?>
</ul>
</div>
</div>
<div class="col_arch">
<div class="left">
<?php _e('By Categories:', 'wpzoom'); ?>
</div>
<div class="right">
<ul>
<?php wp_list_categories('title_li=&hierarchical=0&show_count=1') ?>
</ul>
</div>
</div>
<div class="col_arch">
<div class="left">
<?php _e('By Tags:', 'wpzoom'); ?>
</div>
<div class="right">
<?php wp_tag_cloud('format=list&smallest=14&largest=14&unit=px'); ?>
</div>
</div>
</div><!-- / .entry -->
<div class="clear"></div>
<?php endwhile; ?>
</div><!-- / .post -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>