| 1234567891011121314151617 | 
							- <?php get_header(); ?>
 
- 	<div class="container">
 
- 		<div id="content" role="main">
 
- 			<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
 
- 			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 
- 				<div class="entry-content">
 
- 					<div class="date">
 
- 						<?php the_date(); ?>
 
- 					</div>
 
- 					<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
 
- 					<?php the_content(); ?>
 
- 				</div>
 
- 			</div>
 
- 			<?php endwhile; ?>
 
- 		</div>
 
- 	</div>
 
- <?php get_footer(); ?>
 
 
  |