forked from HaoOuBa/Joe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallpaper.php
executable file
·41 lines (35 loc) · 953 Bytes
/
wallpaper.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
32
33
34
35
36
37
38
39
40
41
<?php
/**
* 壁纸
*
* @package custom
*
**/
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<?php $this->need('public/include.php'); ?>
<link href="<?php _getAssets('assets/css/joe.wallpaper.min.css'); ?>" rel="stylesheet">
<script src="<?php _getAssets('assets/js/joe.wallpaper.min.js') ?>"></script>
</head>
<body>
<div id="Joe">
<?php $this->need('public/header.php'); ?>
<div class="joe_container">
<div class="joe_main">
<div class="joe_wallpaper__type">
<div class="joe_wallpaper__type-title">壁纸分类</div>
<ul class="joe_wallpaper__type-list">
<li class="error">正在拼命加载中...</li>
</ul>
</div>
<div class="joe_wallpaper__list"></div>
<ul class="joe_wallpaper__pagination"></ul>
</div>
<?php $this->need('public/aside.php'); ?>
</div>
<?php $this->need('public/footer.php'); ?>
</div>
</body>
</html>