<?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;
?>
Где найти сложные макеты для верстки?
<!DOCTYPE html>
<html lang="ru-RU">
<head>
<meta charset="UTF-8">
<meta name="author" content="reskwer">
<title>Что-то на CodePen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="block">
<span>News</span><span>|</span><span>15 october 2011 - 18:32</span>
<h1>Lorem ipsum dolor.</h1>
<img src="http://placehold.it/250x150" alt="img">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus dicta, neque suscipit amet ipsa, quidem, nisi ratione non ex magni et excepturi quaerat atque facere ad facilis, explicabo accusantium magnam.</p>
<a href="#">read more</a>
</div>
</body>
</html>
body{
font-family: tahoma,verdana,arial;
padding: 25px;
}
.block{
width: 600px;
height: 250px;
border-bottom: 2px dotted #ccc;
position: relative;
}
.block img{
float: left;
margin: 0 8% 0 1%;
border: 3px solid #000;
border-radius: 3px;
}
.block span:nth-child(1){
font: italic 120% tahoma;
}
.block span:nth-child(2){
color: #ccc;
display: inline-block;
padding: 0 15px;
}
.block span:nth-child(3){
font-size: 80%;
color: #ccc;
}
.block h1{
font-size: 140%;
}
.block a{
display: block;
background: #eee;
color: black;
font-style: italic;
width: 100px;
height: 22px;
position: absolute;
right: 20px;
text-align: center;
text-decoration: none;
}
GET /index.php?name=Андрей&surname=Галкин
/login.php?login=Андрей&password=123
согласитесь что так передавать такую информацию совсем не безопасно. Любой может открыть ваш браузер и начиная вводить адрес сайта он из истории может увидеть ваши пароли и логины.POST /login.php (login=Андрей&password=123)
то что в скобочках было бы скрыто и никак не сохранено в браузере.