mirror of
https://github.com/jerryWangor/iris_web.git
synced 2025-12-24 13:37:51 +08:00
20 lines
355 B
HTML
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>
|