mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
53 lines
1.2 KiB
HTML
53 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{$post.title}</title>
|
|
{include file='common/_require'/}
|
|
<link rel="stylesheet" href="/static/lib/quill/quill.snow.css">
|
|
<link rel="stylesheet" href="/static/lib/highlight/styles/vs.css">
|
|
<script src="/static/lib/highlight/highlight.pack.js"></script>
|
|
<style>
|
|
.ql-editor {
|
|
padding: unset
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="layui-container main-container">
|
|
<div class="layui-row layui-col-space12">
|
|
{include file='common/_left'/}
|
|
<div class="layui-col-md7">
|
|
<div class="main-container">
|
|
<div class="content-container">
|
|
<div class="title">
|
|
{$post.title}
|
|
</div>
|
|
<div class="info">
|
|
<span>{$post->publish_time_text}</span>
|
|
</div>
|
|
<div class="ql-snow">
|
|
<div class="ql-editor">{$post->content_html|raw}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file='common/_right'/}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$('.ql-editor pre').each(function (n, e) {
|
|
|
|
hljs.highlightBlock(e);
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |