1234567891011121314151617181920212223242526272829303132333435 |
- <!--perhaps an altenate header -->
- <?php get_header('home'); ?>
- <div class="container-full leader dark">
- <!-- Not sure what I'm going to have on my main page just yet maybe the card again -->
- <div class="container">
- <h1 class="light">Some Static Content</h1>
- <h2 class="light">Some Static Content</h2>
- <h3 class="light">Some Static Content</h3>
- <h4 class="light">Some Static Content</h4>
- <h5 class="light">Some Static Content</h5>
- <h6 class="light">Some Static Content</h6>
- </div>
- </div>
- <div class="container">
- <div id="content" role="main">
- <main id="main" class="site-main" role="main">
- <!-- Not sure what I'm going to have on my main page just yet -->
- <?php query_posts('showposts=2'); ?>
- <?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('n/j/Y'); ?>
- </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(); ?>
- <?php comments_template( '', true ); ?>
- <div class="clear"> </div>
- </div>
- </div>
- <?php endwhile; ?>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
|