Rev 936 | Rev 1244 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<html>
<head>
<title><bean:write name="entry" property="title" /></title>
</head>
<body bgcolor="white">
<h1><bean:write name="entry" property="title" /></h1>
<p>
<logic:empty name="prevEntry" property="path">
<<
</logic:empty>
<logic:notEmpty name="prevEntry" property="path">
<logic:equal name="prevEntry" property="isDir" value="true">
<a href="index.do?path=<bean:write name="prevEntry" property="path" />"><<</a>
</logic:equal>
<logic:equal name="prevEntry" property="isDir" value="false">
<a href="page.do?path=<bean:write name="prevEntry" property="path" />"><<</a>
</logic:equal>
</logic:notEmpty>
<logic:notPresent name="index" property="path">
</logic:notPresent>
<logic:present name="index" property="path">
<a href="index.do?path=<bean:write name="index" property="path" />">Index</a>
</logic:present>
<logic:empty name="nextEntry" property="path">
>>
</logic:empty>
<logic:notEmpty name="nextEntry" property="path">
<logic:equal name="nextEntry" property="isDir" value="true">
<a href="index.do?path=<bean:write name="nextEntry" property="path" />">>></a>
</logic:equal>
<logic:equal name="nextEntry" property="isDir" value="false">
<a href="page.do?path=<bean:write name="nextEntry" property="path" />">>></a>
</logic:equal>
</logic:notEmpty>
</p>
<p><a href="origin.do?path=<bean:write name="entry" property="path" />"
><img src="medium.do?path=<bean:write name="entry" property="path" />"
alt="<bean:write name="entry" property="title" />"
width="<bean:write name="entry" property="width" />"
height="<bean:write name="entry" property="height" />"
border=0></a></p>
</body>
</html>