-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathleaving.php
More file actions
67 lines (54 loc) · 1.92 KB
/
Copy pathleaving.php
File metadata and controls
67 lines (54 loc) · 1.92 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* 留言
*
* @package custom
*
**/
?>
<?php $this->need('public/prevent.php'); ?>
<?php $this->need('public/defend.php'); ?>
<!DOCTYPE html>
<html lang="zh-CN" data-color-mode="<?php if($_COOKIE['night']=='1')echo 'dark';else echo 'light'; ?>">
<head>
<?php $this->need('public/head.php'); ?>
</head>
<body>
<?php $this->options->JCustomBodyStart() ?>
<section id="joe">
<!-- 头部 -->
<?php $this->need('public/header.php'); ?>
<!-- 主体 -->
<section class="container j-post">
<section class="j-adaption">
<div class="main" style="background-color:#8adaffb9;">
<!-- 分类 -->
<?php $this->need('component/post.classify.php'); ?>
<!-- 标题 -->
<div class="header">
<h1 class="title j-typing"><?php $this->title() ?></h1>
</div>
<?php $this->need('component/leaving.list.php'); ?>
</div>
<?php $this->need('public/comment.php'); ?>
</section>
</section>
<!-- 弹幕 -->
<?php if ($this->options->JBarragerStatus === 'on') : ?>
<ul class="j-barrager-list">
<?php $this->comments()->to($comments); ?>
<?php while ($comments->next()) : ?>
<li>
<span class="j-barrager-list-avatar" data-src="<?php ParseAvatar($comments->mail); ?>"></span>
<span class="j-barrager-list-content"><?php $comments->excerpt(); ?></span>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
<!-- 尾部 -->
<?php $this->need('public/footer.php'); ?>
</section>
<!-- 配置文件 -->
<?php $this->need('public/config.php'); ?>
</body>
</html>