Advertisement
Guest User

list_item

a guest
Jun 15th, 2012
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns:wicket="http://wicket.apache.org">
  5.     <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  7.         <title>Movie DB</title>
  8.     </head>
  9.     <body>
  10.         <div wicket:id="mainNavigation">links to common pages</div>
  11.         <h2>Movie List</h2>
  12.  
  13.         <table>
  14.             <tr wicket:id="movie_list">
  15.                 <td>
  16.                     <a wicket:id="movie_link" href="#">
  17.                         <span wicket:id="title">The Matrix</span>
  18.                         (<span wicket:id="year">1999</span>)
  19.                     </a>
  20.                 </td>
  21.             </tr>
  22.         </table>
  23.     </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement