page.php 644 B

1234567891011121314151617
  1. <?php get_header(); ?>
  2. <div id="container" class="one-column">
  3. <div id="content" role="main">
  4. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  6. <div class="entry-content">
  7. <div class="date">
  8. <?php the_date(); ?>
  9. </div>
  10. <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>
  11. <?php the_content(); ?>
  12. </div>
  13. </div>
  14. <?php endwhile; ?>
  15. </div>
  16. </div>
  17. <?php get_footer(); ?>