forked from 1a57danc3/Azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
24 lines (24 loc) · 805 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
24
<?php $this->need('header.php'); ?>
<div class="content grid-u-1 grid-u-med-3-4">
<h1 class="content-subhead">
<a href="<?php $this->options->siteUrl(); ?>">
主页
</a>
»
<?php $this->title() ?>
</h1>
<article class="post" id="post">
<header class="post-header">
<a href="<?php
$this->permalink() ?>" class="post-title">
<?php $this->title() ?>
</a>
</header>
<div class="post-content">
<p>
<?php $this->content(); ?>
</p>
</div>
</article>
<?php $this->need('comments.php'); ?>
<?php $this->need('footer.php'); ?>