<?get_header();?>
<section class="clearfix">
<div class="column-left">
<h1 class="article" onclick="location.href='<?echo get_category_link(2);?>'">
<a href="<?echo get_category_link(2);?>">Статьи</a>
</h1>
<?php query_posts("cat=10&posts_per_page=3"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="first-news clearfix">
<div class="big-miniature"></div>
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<?
$excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);
?></p>
</div>
<?php endwhile; ?>
<?wp_reset_query();?>
<div class="second-news clearfix">
<div class="big-miniature-second"></div>
<div class="data">12 сентября 3014 г.</div>
<h2>Было сказано</h2>
<p class="text">бла-бла-бла</p>
</div>
<div class="third-news clearfix">
<div class="big-miniature"></div>
<div class="data">12 сентября 3014 г.</div>
<h2>Было сказано</h2>
<p class="text">бла-бла-бла</p>
</div>
</div>
<?php query_posts("cat=10&posts_per_page=3"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="first-news clearfix">
<div class="big-miniature"></div>
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
</div>
<?php endwhile; ?>
<?php query_posts("cat=10&posts_per_page=3"); ?>
<?php
$idx = 1;
while (have_posts()) : the_post(); ?>
<? if( $idx % 2 == 1) { /* выводим нечетные статьи*/ ?>
<div class="first-news clearfix">
<div class="big-miniature"></div>
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
</div>
<? } else { /* выводим четные */?>
<div class="first-news clearfix">
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
<div class="big-miniature"></div>
</div>
<? } ?>
<?php
$idx++;
endwhile;
?>