#--后台的UI界面通用区域定义-->
<#macro html5 width="100%" style="">
<#include "/include/macro.ftl"/>
<#include "/include/meta.ftl"/>
#macro>
<#macro nav title="板块名称" back=false style="">
${title}
<#nested/>
<#if back>
<@ms.backButton/>
#if>
#macro>
<#--面板-->
<#macro panel style="">
<#nested/>
#macro>
<#--面板导航-->
<#macro panelNav empty=false>
style=" padding: 0;"#if>>
<#nested/>
#macro>
<#--提示-->
<#macro notify msg="提示信息" type="warning">
$('.ms-notifications').offset({top:43}).notify({
type:'${type}',
message: { text:'${msg}' }
}).show();
#macro>