📄 classiclayout.jsp
字号:
<%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="GB18030"%><%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
<%--
Layout Tiles
This layout create a html page with <header> and <body> tags. It render
a header, left menu, body and footer tile.
@param title String use in page title
@param header Header tile (jsp url or definition name)
@param menu Menu
@param body Body
@param footer Footer
--%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<link rel=stylesheet href="<%=request.getContextPath()%>/stylesheet/global.css" type="text/css" />
<title><tiles:getAsString name="title" /></title>
</head>
<body bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0">
<tiles:insert attribute="header" />
<table cellSpacing="0" cellPadding="0" width="1000" align="center" border="0">
<tr>
<td vAlign="top" width="224"><tiles:insert attribute='menu' /></td>
<!-- SPLITTER:3px -->
<td width="3">
<div style="font-size: 0px"></div>
</td>
<td vAlign="top" width="650"><tiles:insert attribute="body" /></td>
<td><tiles:insert attribute="right" /></td>
</tr>
</table>
<br>
<tiles:insert attribute="footer" />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -