|
Revision 29, 0.7 KB
(checked in by yabuki, 3 years ago)
|
|
|
-
Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8" ?> |
|---|
| 2 | <%@ page language="java" contentType="text/html; charset=UTF-8" |
|---|
| 3 | pageEncoding="UTF-8"%> |
|---|
| 4 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> |
|---|
| 5 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 7 | <head> |
|---|
| 8 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|---|
| 9 | <title>Insert title here</title> |
|---|
| 10 | </head> |
|---|
| 11 | <body> |
|---|
| 12 | <fmt:setBundle var="rb" basename="ui" /> |
|---|
| 13 | <p><fmt:message key="program.greeting" bundle="${rb}" /></p> |
|---|
| 14 | |
|---|
| 15 | <p><fmt:formatDate value="<%=new java.util.Date()%>" |
|---|
| 16 | type="both" dateStyle="full" timeStyle="full" /></p> |
|---|
| 17 | </body> |
|---|
| 18 | </html> |
|---|