2021-01-24 02:45:15 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<?php $this->need('public/include.php'); ?>
|
2021-01-24 13:30:43 +00:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-tomorrow.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
|
|
|
|
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.post.css'); ?>">
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
|
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'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php $this->need('public/aside.php'); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php $this->need('public/footer.php'); ?>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|