-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
24 lines (24 loc) · 901 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
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/header.php');
?>
<body>
<?php $this->need('includes/sidebar.php'); ?>
<div class="post_main">
<div class="main_container">
<?php $this->need('includes/banner.php'); ?>
<div class="main_content">
<div class="content_item">
<section class="content_section">
<!-- <h2 class="post-title" itemprop="name headline"><a itemprop="url" href="--><?php //$this->permalink() ?><!--">--><?php //$this->title() ?><!--</a></h2>-->
<div class="post-content" itemprop="articleBody">
<?php $this->content(); ?>
</div>
</section>
</div>
<?php $this->need('includes/comments.php'); ?>
</div>
<?php $this->need('includes/footer.php'); ?>
</div>
</div>
</body>