13 lines
216 B
Text
13 lines
216 B
Text
|
<#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>
|