-
Notifications
You must be signed in to change notification settings - Fork 33
/
post.php
26 lines (20 loc) · 1.03 KB
/
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
25
26
<?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="lately-a" 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 href="<?php $this->permalink(); ?>"><?php $this->category(','); ?></a>
</div>
</header>
<meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="<?php $this->permalink(); ?>"/>
<div class="grap" itemprop="articleBody">
<?php parseContent($this); ?>
</div>
</article>
<?php $this->need('comments.php'); ?>
</div><!-- end #main-->
<?php $this->need('footer.php'); ?>