-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsingular.php
More file actions
34 lines (26 loc) · 864 Bytes
/
singular.php
File metadata and controls
34 lines (26 loc) · 864 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
30
31
32
33
34
<?php
/**
* Apocrypha Theme Single Post Template
* Andrew Clayton
* Version 1.0.0
* 8-6-2013
*/
?>
<?php get_header(); ?>
<div id="content" role="main">
<?php apoc_breadcrumbs(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="<?php apoc_entry_class(); ?>">
<header class="entry-header <?php post_header_class(); ?>">
<h1 class="entry-title"><?php entry_header_title( false ); ?></h1>
<p class="entry-byline"><?php entry_header_description(); ?></p>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div>
</div><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; endif; ?>
</div><!-- #content -->
<?php apoc_primary_sidebar(); ?>
<?php comments_template( '/library/templates/comments.php', true ); ?>
<?php get_footer(); ?>