forked from jozhn/Bigfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
23 lines (19 loc) · 788 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="layoutSingleColumn">
<article class="u-paddingTop50" itemscope="itemscope" itemtype="http://schema.org/Article">
<header class="entry-header">
<h2 class="entry-title" itemprop="headline"><?php $this->title() ?></h2>
<div class="entry-meta">
<a><time class="timeago" datetime="<?php $this->date('Y-m-d H:i:s'); ?>" itemprop="datePublished"><?php $this->date('Y-m-d H:i:s');?></time></a>
<span class="middotDivider"></span>
<a rel="category tag">关于</a>
</div>
</header>
<div class="grap" itemprop="articleBody">
<?php $this->content(); ?>
</div>
</article>
<?php $this->need('comments.php'); ?>
</div><!-- end #main-->
<?php $this->need('footer.php'); ?>