Jony/page.php

35 lines
1.4 KiB
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-06-03 10:10:51 +00:00
<?php if ($this->options->JPrismTheme) : ?>
<link rel="stylesheet" href="<?php $this->options->JPrismTheme() ?>">
<?php else : ?>
2022-05-20 08:45:36 +00:00
<link rel="stylesheet" href="https://fastly.jsdelivr.net/npm/prismjs@1.23.0/themes/prism.min.css">
2021-06-03 10:10:51 +00:00
<?php endif; ?>
2022-05-20 08:45:36 +00:00
<script src="https://fastly.jsdelivr.net/npm/clipboard@2.0.6/dist/clipboard.min.js"></script>
<script src="https://fastly.jsdelivr.net/npm/typecho-joe-next@6.2.4/plugin/prism/prism.min.js"></script>
2021-08-28 01:16:16 +00:00
<script src="<?php $this->options->themeUrl('assets/js/joe.post_page.min.js'); ?>"></script>
2021-01-24 02:45:15 +00:00
</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 ?>">
2021-03-06 07:03:39 +00:00
<?php $this->need('public/batten.php'); ?>
2021-01-24 02:45:15 +00:00
<?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>