Rev 962 | Rev 1244 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
936 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | |||
5 | <html> |
||
6 | |||
7 | <head> |
||
8 | <title><bean:write name="entry" property="title" /></title> |
||
9 | </head> |
||
10 | |||
11 | <body bgcolor="white"> |
||
12 | |||
13 | <h1><bean:write name="entry" property="title" /></h1> |
||
14 | |||
1243 | dev | 15 | <logic:notEmpty name="entry" property="subtitle"> |
16 | <p><bean:write name="entry" property="subtitle" /></p> |
||
17 | </logic:notEmpty> |
||
18 | |||
19 | <logic:notEmpty name="entry" property="comment"> |
||
20 | <p><bean:write name="entry" property="comment" /></p> |
||
21 | </logic:notEmpty> |
||
22 | |||
936 | dev | 23 | <p> |
24 | <logic:empty name="prevEntry" property="path"> |
||
25 | << |
||
26 | </logic:empty> |
||
27 | <logic:notEmpty name="prevEntry" property="path"> |
||
28 | <logic:equal name="prevEntry" property="isDir" value="true"> |
||
29 | <a href="index.do?path=<bean:write name="prevEntry" property="path" />"><<</a> |
||
30 | </logic:equal> |
||
31 | <logic:equal name="prevEntry" property="isDir" value="false"> |
||
32 | <a href="page.do?path=<bean:write name="prevEntry" property="path" />"><<</a> |
||
33 | </logic:equal> |
||
34 | </logic:notEmpty> |
||
35 | |||
36 | <logic:notPresent name="index" property="path"> |
||
37 | |
||
38 | </logic:notPresent> |
||
39 | <logic:present name="index" property="path"> |
||
40 | <a href="index.do?path=<bean:write name="index" property="path" />">Index</a> |
||
41 | </logic:present> |
||
42 | |||
43 | <logic:empty name="nextEntry" property="path"> |
||
44 | >> |
||
45 | </logic:empty> |
||
46 | <logic:notEmpty name="nextEntry" property="path"> |
||
47 | <logic:equal name="nextEntry" property="isDir" value="true"> |
||
48 | <a href="index.do?path=<bean:write name="nextEntry" property="path" />">>></a> |
||
49 | </logic:equal> |
||
50 | <logic:equal name="nextEntry" property="isDir" value="false"> |
||
51 | <a href="page.do?path=<bean:write name="nextEntry" property="path" />">>></a> |
||
52 | </logic:equal> |
||
53 | </logic:notEmpty> |
||
54 | </p> |
||
55 | |||
56 | <p><a href="origin.do?path=<bean:write name="entry" property="path" />" |
||
57 | ><img src="medium.do?path=<bean:write name="entry" property="path" />" |
||
58 | alt="<bean:write name="entry" property="title" />" |
||
59 | width="<bean:write name="entry" property="width" />" |
||
60 | height="<bean:write name="entry" property="height" />" |
||
61 | border=0></a></p> |
||
62 | |||
63 | </body> |
||
64 | |||
65 | </html> |