-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdynamic.php
More file actions
47 lines (36 loc) · 1.05 KB
/
Copy pathdynamic.php
File metadata and controls
47 lines (36 loc) · 1.05 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
<?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">
<?php $this->need('public/comment.dynamic.php'); ?>
</section>
<?php if ($this->options->JPostAsideStatus === 'on' && $this->fields->aside !== 'off') : ?>
<?php $this->need('public/aside.php'); ?>
<?php endif; ?>
</section>
<!-- 尾部 -->
<?php $this->need('public/footer.php'); ?>
</section>
<!-- 配置文件 -->
<?php $this->need('public/config.php'); ?>
</body>
</html>