freemarkerdor/src/main/resources/cz/xelfi/quoridor/freemarkerdor/UI/index.fmt
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 11 Aug 2009 14:26:49 +0200
changeset 41 c94f68ddef59
child 42 c5726abc1218
permissions -rw-r--r--
Simple, freemarker based textual UI
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
     2 <html>
     3   <head>
     4     <title></title>
     5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     6   </head>
     7   <body>
     8       <h1>Quoridor Community Server</h1>
     9 
    10       <ol>
    11       <#list model as item>
    12         <li>${item.white} vs. ${item.black} <a href="games/${item.id}">board</a></li>
    13       </#list>
    14       </ol>
    15   </body>
    16 </html>