2021-01-28 11:30:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 壁纸
|
|
|
|
*
|
|
|
|
* @package custom
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
|
|
<head>
|
2023-06-30 08:39:08 +00:00
|
|
|
<?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>
|
2021-01-28 11:30:39 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-06-30 08:39:08 +00:00
|
|
|
<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>
|
2021-01-28 11:30:39 +00:00
|
|
|
</div>
|
2023-06-30 08:39:08 +00:00
|
|
|
<div class="joe_wallpaper__list"></div>
|
|
|
|
<ul class="joe_wallpaper__pagination"></ul>
|
|
|
|
</div>
|
|
|
|
<?php $this->need('public/aside.php'); ?>
|
2021-01-28 11:30:39 +00:00
|
|
|
</div>
|
2023-06-30 08:39:08 +00:00
|
|
|
<?php $this->need('public/footer.php'); ?>
|
|
|
|
</div>
|
2021-01-28 11:30:39 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|