<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div class="hpfeatured">
<?php include(TEMPLATEPATH."/tabber.php");?>
</div>
<div id="homepageleft">
<h4>Maç Özetleri</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Tamamını Oku]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Yorum Yaz', '1 Yorum', '% Yorum'); ?></p>
</div>
<?php endwhile; ?><br />
<h4>Son Dakika</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=3&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Tamamını Oku ]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Yorum Yaz', '1 Yorum', '% Yorum'); ?></p>
</div>
<?php endwhile; ?><br />
</div>
<div id="homepageright">
<h4>Şampiyonlar Ligi Maç Sonuçları</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=4&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Tamamını Oku]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Yorum Yaz', '1 Yorum', '% Yorum'); ?></p>
</div>
<?php endwhile; ?><br />
<h4>Genel Haberler</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=5&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Tamamını Oku]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Yorum Yaz', '1 Yorum', '% Yorum'); ?></p>
</div>
<?php endwhile; ?><br />
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar_home.php");?>
</div>
<!-- The main column ends -->
<?php get_footer(); ?>