23 lines
1009 B
PHP
23 lines
1009 B
PHP
<?php if (!defined("__TYPECHO_ROOT_DIR__")) {exit();} ?>
|
|
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<?php $this->need("header.php"); ?>
|
|
<body class="jasmine-body" style="margin-top:5rem;">
|
|
<div class="jasmine-container grid grid-cols-12">
|
|
<div class="flex col-span-12 lg:col-span-8 flex-col lg:border-x-2 border-stone-100 dark:border-neutral-600 lg:pt-0 lg:px-6 pb-10 px-3">
|
|
<?php $this->need("component/menu.php"); ?>
|
|
<div class="flex flex-col gap-y-12">
|
|
<div></div>
|
|
<?php $this->need("component/post-title.php"); ?>
|
|
<div class="markdown-body dark:!bg-[#161829] dark:!bg-[#0d1117] !text-neutral-900 dark:!text-gray-400" itemprop="articleBody">
|
|
<?php echo handleContent($this->content);?>
|
|
</div>
|
|
<!--<div class="border-b-2 border-stone-100 dark:border-neutral-600"></div>-->
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<?php /*$this->need("footer.php");*/ ?>
|
|
</body>
|
|
</html>
|