mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-07 21:02:48 +08:00
69 lines
1.8 KiB
HTML
69 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{:get_system_config('site_name')}</title>
|
|
{include file='common/_require'/}
|
|
<link rel="stylesheet" href="/static/lib/quill/quill.snow.css">
|
|
|
|
<style>
|
|
.ql-editor {
|
|
padding: 15px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="layui-container">
|
|
<div class="layui-row ul-padding-md">
|
|
<div style="font-size: 22px;">
|
|
{:get_system_config('site_name')}
|
|
</div>
|
|
<div style="font-size: 18px;">
|
|
{:get_system_config('site_desc')}
|
|
</div>
|
|
</div>
|
|
<div class="layui-row layui-col-space6 " style="margin-top: 15px;">
|
|
<div class="layui-col-md3">
|
|
<div class="ul-nav-tree ul-padding-md">
|
|
{volist name='list_post' id='post'}
|
|
<a href="{:url('Index/index',['post_id'=>$post.id])}" class="ul-nav-tree-item">
|
|
<div class="ul-nav-tree-item-title">
|
|
{$post.title}
|
|
</div>
|
|
<div class="ul-nav-tree-item-desc">
|
|
{$post.desc}
|
|
</div>
|
|
</a>
|
|
{/volist}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md9">
|
|
<div class="main-content ul-padding-md">
|
|
<div class="">
|
|
<span class="layui-breadcrumb" lay-separator="/">
|
|
<a href="{:url('Index/index')}">首页</a>
|
|
<a><cite>{$model_post->title}</cite></a>
|
|
</span>
|
|
</div>
|
|
<div class="ql-editor">{$model_post->content_html|raw}</div>
|
|
<div class="demo-page">
|
|
{$model_post->demo_page|raw}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
layui.use(['element'])
|
|
</script>
|
|
</body>
|
|
|
|
</html> |