index.php 487 B

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