This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb6/legacyworlds-web/legacyworlds-web-main/WebContent/WEB-INF/fm/layout/tabs.ftl

13 lines
216 B
Text
Raw Normal View History

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