Sha256: f2e5ccf504a209acefdec915e931c12c9487e2a32d18fe09e0d3f12190c2b38b
Contents?: true
Size: 695 Bytes
Versions: 2
Compression:
Stored size: 695 Bytes
Contents
<?php /** * The template used for displaying page content in page.php * * @category Theme * @package [foundation] * @author [Your Name] * @copyright 2012 [Your Name] */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'foundation' ), 'after' => '</div>' ) ); ?> </div> <footer class="entry-meta"> <?php edit_post_link( __( 'Edit', 'foundation' ), '<span class="edit-link">', '</span>' ); ?> </footer> </article>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wordpress-starter-0.3 | templates/foundation/content-page.php |
wordpress-starter-0.2 | templates/foundation/content-page.php |