- <?php while ( have_posts() ) : the_post(); ?>
- <div id="news">
- <article id="post-<?php echo $post->ID ?>" class="article">
- <header class="article-header">
- <h1 class="article-title"><?php the_title(); ?></span>
- </header>
- <div class="article-content">
- <?php the_post_thumbnail(); ?>
- <?php the_excerpt(); ?>
- </div>
- </article>
- </div>
- <?php endwhile; ?>