|
|
$extends 指令示例 |
|
公共页:(common.ctl)
<html>
<head>
<!--$zone{"head"}-->
<title>$msg{"application.title"}</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="styles/common.css" />
<!--$end-->
</head>
<body>
<!--$zone{"menu"}-->
<div>common menu...</div>
<!--$end-->
<!--$zone{"body"}-->
<!--$end-->
<!--$zone{"copyright"}-->
$msg{"application.copyright"}...
<!--$end-->
</body>
</html>
继承公共页,在body中写业务相关内容:
<!--$extends{"common.ctl"}-->
<!--$zone{"body"}-->
custom body
<!--$end-->
<!--$end-->
扩展公共页head区域:
<!--$extends{"common.ctl"}-->
<!--$zone{"head"}-->
<!--$superzone-->
<scrpt type="text/javascript">
custom head
</scrpt>
<!--$end-->
<!--$zone{"body"}-->
custom body
<!--$end-->
<!--$end-->
<<返回
|
|
|