Files
iris_web/view/public/main.html
2022-10-24 18:30:54 +08:00

20 lines
355 B
HTML

<!DOCTYPE html>
<html>
<!-- 引入头部 -->
{{template "header" .}}
<body>
<!-- 主体部分开始 -->
<!-- 正文开始 -->
<div class="layui-fluid" style="padding-bottom: 0;">
<div class="layui-row layui-col-space15">
{{ yield }}
</div>
</div>
<!-- 主体部分结束 -->
<!-- 引入脚部 -->
{{template "footer" .}}
</body>
</html>