5b6011b6c794dc5cf04ea349b697e5ec13d55b8b
[photos] / src / main / java / org / wamblee / photos / wicket / AlbumPanel.html
1 <html
2         xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
3 <head>
4     <title>Wicket Quickstart Archetype Homepage</title>
5 </head>
6 <body>
7 <strong>Wicket Quickstart Archetype Homepage</strong>
8 <br/>
9 <br/>
10
11
12 <span wicket:id="message">Message here.</span>
13
14 <wicket:panel>
15     <div id="navigation">
16         <h1>Now viewing album <span class="path" wicket:id="path">/phot/entry/xxx</span></h1>
17         Click on an album or photo to start
18         <br/>
19         <br/>
20         <a href="#" wicket:id="prevLink">Prev</a>
21         &nbsp; &nbsp;
22         <span wicket:id="pageLinks">
23             <a href="#" wicket:id="pageLink"><span wicket:id="label">pageno</span></a>
24         </span>
25         &nbsp; &nbsp;
26         <a href="#" wicket:id="nextLink">Next</a>
27         <a href="#" wicket:id="parentLink">Parent</a>
28         <br/>
29         <br/>
30     </div>
31     <div id="photos">
32         <table>
33             <tr wicket:id="row">
34
35                 <td wicket:id="column" id="photoentry">
36
37                     <a href="#" wicket:id="thumbnail">
38                         <table>
39                             <tr>
40                                 <td><img wicket:id="image"/></td>
41                             </tr>
42                             <tr>
43                                 <td><span wicket:id="name">photo name</span></td>
44                             </tr>
45                         </table>
46                     </a>
47                 </td>
48             </tr>
49         </table>
50     </div>
51 </wicket:panel>
52
53 </body>
54 </html>