-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpage.php
30 lines (27 loc) · 1.13 KB
/
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
25
26
27
28
29
30
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<section class="content-wrap">
<div class="container">
<div class="row">
<main class="col-md-8 main-content">
<article id="<?php $this->cid() ?>" class="post">
<header class="post-head">
<h1 class="post-title"><?php $this->title() ?></h1>
<section class="post-meta"></section>
<div class="post-border"></div>
</header>
<section class="post-content">
<!--?php $this->content(); ?-->
<?php echo getContent($this->content); ?>
</section>
<footer class="post-footer clearfix"></footer>
</article>
<div class="about-author clearfix">
<?php $this->need('comments.php'); ?>
</div>
</main>
<?php $this->need('sidebar.php'); ?>
</div class="row">
</div class="container">
</section>
<?php $this->need('footer.php'); ?>