-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
29 lines (28 loc) · 862 Bytes
/
single.php
File metadata and controls
29 lines (28 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
* Template for displaying single post content.
*
* @package WordPress
* @subpackage npoat
* @since npoat 2.0.1
*
*/
get_header() ?>
<div class="container_16 content-single-wrapper">
<div class="grid_16">
<div class="content-single">
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-title">
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'npoat' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
</div>
<div class="post-content">
<?php the_content(); ?>
<br class="clear" />
</div>
</div><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; ?>
</div>
</div>
</div>
<?php get_footer(); ?>