File: /home/harmonyg/www/ektest/wp-content/themes/indication/archive.php
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()): ?>
<div>
<?php $post = $posts[0]; ?>
<h2 class="pagetitle">
<?php if (is_category()): ?>
Рубрика: <?php single_cat_title(); ?>
<?php elseif (is_day()): ?>
Архив за
<?php the_time('d M Y'); ?>
<?php elseif (is_month()): ?>
Архив за
<?php the_time('F Y'); ?>
<?php elseif (is_year()): ?>
Архив за
<?php the_time('Y'); ?>
<?php elseif (is_author()): ?>
Архив завтора
<?php elseif (isset($_GET['paged']) && !empty($_GET['paged'])): ?>
Архив сайта
<?php endif; ?>
</h2>
<div class="entry"> </div>
</div>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Постоянная ссылка: <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="meta"><span class="date"><?php the_time('d M Y') ?></span><span class="posted">Автор: <?php the_author() ?></span></p>
<div class="entry">
<?php the_excerpt(); ?>
<p class="links">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Постоянная ссылка: <?php the_title(); ?>" class="more">Читать полностью</a>
<b> | </b>
<?php comments_popup_link('Ваш отзыв', '1 отзыв', 'Отзывов (%)', 'comments'); ?>
</p>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft">
<?php previous_posts_link('« Предыдущая страница') ?>
</div>
<div class="alignright">
<?php next_posts_link('Следующая страница »') ?>
</div>
</div>
<?php else: ?>
<div class="post">
<h2 class="title">Не найдено</h2>
</div>
<?php endif; ?>
</div>
<!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>