1234567891011121314 |
- <?php get_header(); ?>
- <div id="container" class="one-column">
- <div id="content" role="main">
- <?php query_posts('showposts=1&cat=-7,-6,-8'); ?>
- <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
- <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content home">
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('full'); ?></a>
- </div>
- </div>
- <?php endwhile; ?>
- </div>
- </div>
- <?php get_footer(); ?>
|