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

19 lines
315 B
Text
Raw Normal View History

2018-10-23 09:38:02 +02:00
<#macro tabs>
<div class="tabs">
<#nested>
</div>
</#macro>
<#macro tabStart id title>
2018-10-23 09:38:02 +02:00
<div class="tab" id="${id?xhtml}">
<h3>${title?xhtml}</h3>
<div class="tab-contents">
</#macro>
<#macro tabEnd>
2018-10-23 09:38:02 +02:00
</div>
</div>
</#macro>
<#macro tab id title>
<@tabStart id title />
<#nested>
<@tabEnd />
2018-10-23 09:38:02 +02:00
</#macro>