-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.archives.php
26 lines (26 loc) · 1.12 KB
/
page.archives.php
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
<?php $theme->display('header'); ?>
<!-- page.archive -->
<div id="content" class="hfeed">
<div id="page-<?php echo $post->slug; ?>" class="hentry page <?php echo $post->statusname , ' ' , $post->tags_class; ?>">
<div class="entry-head">
<h1 class="entry-title"><a href="<?php echo $post->permalink; ?>" title="<?php echo strip_tags($post->title); ?>" rel="bookmark"><?php echo $post->title_out; ?></a></h1>
<br class="clear" />
<span class="comments-link"><a href="<?php echo $post->permalink; ?>#comments" title="Comments to this post"> <?php echo $post->comments->approved->count; ?> <?php _ne('Comment', 'Comments', $post->comments->approved->count); ?></a></span>
<?php if ($loggedin) { ?>
<span class="entry-edit"><a href="<?php echo $post->editlink; ?>" title="Edit post">Edit</a></span>
<?php } ?>
</div>
<div class="entry-content">
<?php
echo $post->content_out;
$theme->breezyarchives();
$theme->monthly_archives();
?>
</div>
</div>
<?php $theme->display('comments'); ?>
</div>
<hr />
<!-- /page.archive -->
<?php $theme->display('sidebar'); ?>
<?php $theme->display('footer'); ?>