Created
April 16, 2012 12:50
-
-
Save eteubert/2398586 to your computer and use it in GitHub Desktop.
page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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