Emmanuel BENOîT
6dcd59d7bc
* Added legacyworlds-server-beans-technologies Maven module, including the player-level DAO and controller. * Added session classes to carry technology information, modified web client session façade accordingly * Various changes to common UI elements (forms, lists, etc...) so the start and end of some element can be drawn separately * Added controller, templates and JavaScript for research page
19 lines
No EOL
315 B
Text
19 lines
No EOL
315 B
Text
<#macro tabs>
|
|
<div class="tabs">
|
|
<#nested>
|
|
</div>
|
|
</#macro>
|
|
<#macro tabStart id title>
|
|
<div class="tab" id="${id?xhtml}">
|
|
<h3>${title?xhtml}</h3>
|
|
<div class="tab-contents">
|
|
</#macro>
|
|
<#macro tabEnd>
|
|
</div>
|
|
</div>
|
|
</#macro>
|
|
<#macro tab id title>
|
|
<@tabStart id title />
|
|
<#nested>
|
|
<@tabEnd />
|
|
</#macro> |