forked from Adoream/typecho-theme-diaspora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
31 lines (28 loc) · 839 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
25
26
27
28
29
30
31
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php
/*
* @Author: Jin
* @Date: 2020-03-11 12:19:13
* @LastEditors: Jin
* @LastEditTime: 2020-03-13 09:03:16
* @FilePath: /Diaspora/page.php
*/
?>
<?php $this->need('component/header.php'); ?>
<div id="single" class="page">
<div id="top">
<a class="image-icon" href="javascript:history.back()"></a>
</div>
<div class="section" style="left: 0;">
<div class="article">
<div>
<div class="content">
<?php $this->content(); ?>
</div>
<div class="comment-wrap">
<?php $this->need('component/comments.php'); ?>
</div>
</div>
</div>
</div>
</div></html>