forked from pagecho/maupassant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
24 lines (24 loc) · 832 Bytes
/
post.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
<?php $this->need('header.php'); ?>
<div class="col-8" id="main">
<div class="res-cons">
<article class="post">
<header>
<h1 class="post-title"><?php $this->title() ?></h1>
</header>
<div class="post-meta">
<time datetime="<?php $this->date('c'); ?>;">
<?php $this->date(); ?>;
</time>
<div class="post-category">
归类于 <?php $this->category(', '); ?>;
</div>
</div>
<div class="post-content">
<?php $this->content(); ?>
</div>
</article>
<?php $this->need('comments.php'); ?>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>