mirror of
https://github.com/kennethreitz-archive/monolithic-wordpress-theme.git
synced 2026-06-05 15:40:18 +00:00
19 lines
661 B
PHP
19 lines
661 B
PHP
<?php get_header(); ?>
|
|
<div class="container">
|
|
<div class="container-main">
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
<h2 class="green"><?php the_title(); ?></h2>
|
|
<div class="entry">
|
|
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
|
|
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
|
</div>
|
|
<?php endwhile; endif; ?>
|
|
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
|
|
</div>
|
|
</div>
|
|
<?php getSidebar(); ?>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|