41 lines
1004 B
PHP
41 lines
1004 B
PHP
<?php
|
|
/**
|
|
* The template for displaying any single page.
|
|
*
|
|
*/
|
|
|
|
get_header(); ?>
|
|
<div class="wrapper--default">
|
|
<div id="primary" class="wrapper--inner">
|
|
<div id="content" role="main" class="span8 offset2">
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<article class="post mt-12">
|
|
|
|
<h1 class=""><?php the_title(); ?></h1>
|
|
|
|
<div class="the-content">
|
|
<?php the_content(); ?>
|
|
|
|
<?php wp_link_pages(); ?>
|
|
</div><!-- the-content -->
|
|
|
|
</article>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php else : ?>
|
|
|
|
<article class="post error">
|
|
<h1 class="404">Nothing posted yet</h1>
|
|
</article>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #content .site-content -->
|
|
</div><!-- #primary .content-area -->
|
|
</div>
|
|
<?php get_footer(); ?>
|