Files
YwxAppThink/addon/forum/view/member/layout.html
T

49 lines
1.2 KiB
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>{$title | default='论坛 - 会员中心'}</title>
<meta name="renderer" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link href="/assets/layui/css/layui.css" rel="stylesheet" />
<link href="/static/member/css/common.css" rel="stylesheet" />
<script src="/assets/library/ueditor/ueditor.config.js"></script>
<script src="/assets/library/ueditor/ueditor.all.js"></script>
<style>
html,
body {
height: 100%;
display: flex;
flex-direction: column;
}
body {
background: #f2f3f5;
}
.child-page {
flex: 1;
margin: 14px;
}
.in-iframe .child-page {
margin: 0;
}
</style>
<script type="text/javascript">
var layui = layui || window.top.layui;
window.UEDITOR_HOME_URL = '/assets/library/ueditor/';
if (window !== top) {
document.documentElement.className += ' in-iframe';
}
</script>
</head>
<body>
<div class="child-page">
{__CONTENT__}
</div>
</body>
</html>