<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<div class="pagetitle"><?php echo sprintf(__("Архив категории '%s'",'pda-theme'),single_cat_title('', FALSE));?></div>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<div class="pagetitle"><?php echo sprintf(__('Архив для %s', 'pda-theme'), get_the_time(__('F jS, Y','pda-theme'))); ?></div>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<div class="pagetitle"><?php echo sprintf(__('Архив %s', 'pda-theme'), get_the_time(__('F, Y','pda-theme'))); ?></div>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<div class="pagetitle"><?php echo sprintf(__('Архив %s', 'pda-theme'), get_the_time('Y')); ?></div>
<?php /* If this is a search */ } elseif (is_search()) { ?>
<div class="pagetitle"><?php _e('Поисковые результаты','pda-theme');?></div>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<div class="pagetitle"><?php _e('Автор архива','pda-theme');?></div>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<div class="pagetitle"><?php _e('Архивы блога','pda-theme');?></div>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo sprintf(__('Постоянная ссылка к %s','pda-theme'),the_title('','',FALSE)); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time(__('F jS, Y','pda-theme')) ?> <!-- <?php _e('by','pda-theme'); ?> <?php the_author() ?> --></small>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<p class="postmetadata">
<?php _e('Опубликовано в','pda-theme'); ?> <?php the_category(', ') ?> | <?php edit_post_link(__('правка','pda-theme'), '', ' | '); ?> <?php comments_popup_link(__('Нет комментов','pda-theme') . ' »', __('1 коммент.','pda-theme') . ' »', __('% коммент.','pda-theme') . ' »'); ?>
</p>
<?php endwhile; ?>
<div class="navigation">
<?php next_posts_link('« ' . __('Пред. запись','pda-theme')) ?> <?php previous_posts_link(__('След. запись','pda-theme') . ' »') ?>
</div>
<?php else : ?>
<h2 class="center"><?php _e('Не найдено','pda-theme');?></h2>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>