📄 layout.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<html>
<head>
<title>TilesTaglibs Sample</title>
</head>
<body >
<%-- One table lays out all of the content for this page --%>
<table width="100%" height="100%" >
<tr>
<%-- Sidebar--%>
<td width="150" valign="top" align="left" bgcolor="#CCFFCC">
<tiles:insert attribute="SIDEBAR"></tiles:insert> <!-- 相当于模板内挖了一个空 -->
</td>
<%-- Main content--%>
<td valign="top" height="100%" width="*">
<table width="100%" height="100%">
<tr>
<%-- Header--%>
<td valign="top" height="15%">
<tiles:insert attribute="HEADER"></tiles:insert>
</td>
<tr>
<tr>
<%-- Content--%>
<td valign="top" height="*">
<tiles:insert attribute="CONTENT"></tiles:insert>
</td>
</tr>
<tr>
<%-- Footer--%>
<td valign="bottom" height="15%">
<tiles:insert attribute="FOOTER"></tiles:insert>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -