Skip to content

Instantly share code, notes, and snippets.

@eteubert
Created April 16, 2012 12:50
Show Gist options
  • Select an option

  • Save eteubert/2398586 to your computer and use it in GitHub Desktop.

Select an option

Save eteubert/2398586 to your computer and use it in GitHub Desktop.
page
<?php
/**
* @package WordPress
* @subpackage MarketPress Theme
* @template page
* @since 0.0.1
*/
?>
<?php get_header(); ?>
<div class="main_content_wrapper">
<div class="main_content">
<div class="contentstart">
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<header>
<h2><?php the_title(); ?></h2>
</header>
<section class="entry-content">
<?php the_content(); ?>
<?php echo get_the_content(); ?>
</section>
</article>
</div>
</div>
</div>
<?php get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment