21 lines
199 B
HTML
21 lines
199 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title> ${title} 首页 </title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<%
|
||
|
|
include("head.html"){}
|
||
|
|
%>
|
||
|
|
|
||
|
|
<li>1.</li>
|
||
|
|
<%
|
||
|
|
include("foot.html"){}
|
||
|
|
%>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|