Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Punk Daddy

    (@punk-daddy)

    <?php get_header(); ?>
    <!-- SPECIFIC PAGE CONTENT BEGINS HERE -->
    
         <div class="container">
              <section id="blog">
                   <div class="hgroup">
                        <h1><?php the_title(); ?></h1>
                        <h2><i class="icon-time"></i><?php the_time('F jS, Y') ?></h2>
                        <ul class="breadcrumb pull-right">
                             <li><a href="/blog">back to blog home</a></li>
                        </ul>
                   </div>
                   <div class="row">
                        <div id="leftcol" class="span8">
                   			<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                            <article class="post">
                                  <div class="post_content">
                                       <figure><?php if ( has_post_thumbnail() ) {the_post_thumbnail();} ?></figure>
                                       <?php the_content(); ?>
                                  </div>
                            </article>
    			            <ul class="pager">
                  				<li class="previous disabled"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentytwelve' ) . '</span> %title' ); ?></li>
                   				<li class="next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentytwelve' ) . '</span>' ); ?></li>
              				</ul>
    
    						<?php endwhile; // end of the loop. ?>
                            <?php endif; ?>
                        </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    Thread Starter Punk Daddy

    (@punk-daddy)

    It is a custom built theme created to match my client’s existing site.

Viewing 2 replies - 1 through 2 (of 2 total)