-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
24 lines (23 loc) · 968 Bytes
/
Copy pathpage.php
File metadata and controls
24 lines (23 loc) · 968 Bytes
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 if (!defined('__TYPECHO_ROOT_DIR__')) exit; $this->need('header.php'); ?>
<section id="body">
<div class="container">
<div id="main" class="post-page">
<div class="res-cons">
<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="<span><?php echo formatTime($this->modified);?></span>" itemprop="datePublished"><span><?php echo formatTime($this->modified);?></span></time></a>
</div>
</header>
<div class="grap" itemprop="articleBody">
<?php $this->content(); ?>
</div>
</article><?php $this->need('comments.php'); ?>
</div>
</div>
</div>
</section>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>