This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
lwb6/legacyworlds-web-main/Content/Raw/WEB-INF/fm/layout/tabs.ftl
Emmanuel BENOîT 6dcd59d7bc New research and technology page
* 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
2012-04-07 13:06:03 +02:00

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>