Jony/page.php

29 lines
1004 B
PHP
Raw Normal View History

2021-01-24 02:45:15 +00:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<?php $this->need('public/include.php'); ?>
2021-01-27 05:00:55 +00:00
<!-- 独立页面需要用到CSS及JS -->
2021-01-24 13:30:43 +00:00
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.post.css'); ?>">
2021-01-24 02:45:15 +00:00
<script src="<?php $this->options->themeUrl('assets/js/joe.post&page.js'); ?>"></script>
</head>
<body>
<div id="Joe">
<?php $this->need('public/header.php'); ?>
<div class="joe_container">
<div class="joe_main">
<div class="joe_detail" data-cid="<?php echo $this->cid ?>">
<?php $this->need('public/article.php'); ?>
2021-01-25 10:36:43 +00:00
<?php $this->need('public/handle.php'); ?>
<?php $this->need('public/copyright.php'); ?>
2021-01-24 02:45:15 +00:00
</div>
2021-01-26 06:19:52 +00:00
<?php $this->need('public/comment.php'); ?>
2021-01-24 02:45:15 +00:00
</div>
<?php $this->need('public/aside.php'); ?>
</div>
<?php $this->need('public/footer.php'); ?>
</div>
</body>
</html>