index.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--perhaps an altenate header -->
  2. <?php get_header('home'); ?>
  3. <div id="big-top" class="container-full leader dark">
  4. <!-- Not sure what I'm going to have on my main page just yet maybe the card again -->
  5. <div class="container">
  6. <div class="m-scene scene_element scene_element--fadeinright">
  7. <h1 class="light">Some Static Content</h1>
  8. <h2 class="light">Some Static Content</h2>
  9. <h3 class="light">Some Static Content</h3>
  10. <h4 class="light">Some Static Content</h4>
  11. <h5 class="light">Some Static Content</h5>
  12. <h6 class="light">Some Static Content</h6>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="container">
  17. <div id="content" role="main">
  18. <main id="main" class="site-main" role="main">
  19. <!-- Not sure what I'm going to have on my main page just yet -->
  20. <?php query_posts('showposts=1'); ?>
  21. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  22. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  23. <div class="entry-content">
  24. <div class="date">
  25. <?php the_date('n/j/Y'); ?>
  26. </div>
  27. <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>
  28. <?php the_content(); ?>
  29. <?php comments_template( '', true ); ?>
  30. <div class="clear">&nbsp;</div>
  31. </div>
  32. </div>
  33. <?php endwhile; ?>
  34. </div>
  35. </div>
  36. </div>
  37. <?php get_footer(); ?>