| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * The template used for displaying page content in page.php
- *
- * @package Spun
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
- </header><!-- .entry-header -->
- <div class="entry-content">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">', 'after' => '</div>', 'link_before' => '<span class="active-link">', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
- <footer class="entry-meta">
- <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
- <span class="comments-link">
- <a href="#comments-toggle">
- <span class="tail"></span>
- <?php echo comments_number( __( '+', 'spun' ), __( '1', 'spun' ), __( '%', 'spun' ) ); ?>
- </a>
- </span>
- <?php endif; ?>
- <div class="entry-meta-wrapper">
- <?php edit_post_link( __( 'Edit', 'spun' ), '<span class="edit-link">', '</span>' ); ?>
- </div>
- </footer><!-- .entry-meta -->
- </article><!-- #post-<?php the_ID(); ?> -->
|