#### 全局頭尾文件,只包含了css、js以及全局變量,但不包含任何div,引入以下文件。
PC端
```
{include file="../templates/overall/header_common.html" /}
{include file="../templates/overall/footer_common.html" /}
```
手機端
```
{include file="../templates/overall/wap/header_common.html" /}
{include file="../templates/overall/wap/footer_common.html" /}
```
#### 包括頭尾文件+頂部菜+導航菜單+底部菜單+底部版權,引入以下文件。
PC端包含導航
```
{include file="../templates/overall/header.html" /}
{include file="../templates/overall/footer.html" /}
```
PC端只包含頭部尾部
```
{include file="../templates/overall/header_menu.html" /}
{include file="../templates/overall/footer_menu.html" /}
```
手機端
```
{include file="../templates/overall/wap/header.html" /}
{include file="../templates/overall/wap/footer.html" /}
```
#### 引用其他模塊的頭部模版。
```
{template file="cms/header.html"/}
```
#### layui表格,如果列表是表格,需額外引入以下文件。
PC端/wap共用
```
{include file="../templates/overall/inc/layui_form.html" /}
```
#### layui表單,如果是表單頁面,需額外引入以下文件。
PC端/wap共用
```
{include file="../templates/overall/inc/layui_form_q.html" /}
```