<?php
/**
 * Template Name: Front Page Template
 *
 */

get_header(); ?>

<?php if(of_get_option('sl_show_or_hide')=='true') include (TEMPLATEPATH . '/slider.php' ); ?>


	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			
		<div class="post" id="post-<?php the_ID(); ?>">

			<h2><?php the_title(); ?></h2>

			<?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>

			<div class="entry">

				<?php the_content(); ?>

				<?php wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?>

			</div>

			<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>

		</div>
		
		<?php // comments_template(); ?>

		<?php endwhile; endif; ?>

<?php get_sidebar(); ?>
<?php get_footer(); ?>