-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpage.php
More file actions
17 lines (15 loc) · 767 Bytes
/
page.php
File metadata and controls
17 lines (15 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php $this->need('header.php'); ?>
<div id="content_box">
<div class="post"><div class="mid">
<div class="angle"></div>
<div class="post_date"><?php $this->date('Y-m-d'); ?></div>
<h1 class="title"><a href="<?php $this->permalink() ?>" title="<?php $this->title() ?>"><?php $this->title() ?></a></h1>
<div class="content"><?php $this->content(); ?>
</div>
<div class="post_meta">
<div class="post_comm"><a href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('No Comments', '1 Comment', '%d Comments'); ?></a></div>
</div>
</div></div><div class="post-bot"></div>
<?php $this->need('comments.php'); ?>
</div><!-- end #content-->
<?php $this->need('footer.php'); ?>