Skip to content

Instantly share code, notes, and snippets.

@wuwb
Created March 29, 2013 02:18
Show Gist options
  • Save wuwb/5268302 to your computer and use it in GitHub Desktop.
Save wuwb/5268302 to your computer and use it in GitHub Desktop.
ui-box.ftl
<#macro ui_box class="" title="title">
<div class="ui-box ${class}">
<div class="ui-box-head">
<div class="ui-box-head-border">
<h3 class="ui-box-head-title">${title}</h3>
<#if text??><span class="ui-box-head-text">${text}</span></#if>
<#if more??><a href="#" class="ui-box-head-more">${more}</a></#if>
</div>
</div>
<div class="ui-box-container">
<div class="ui-box-content">
<#nested>
</div>
</div>
</div>
</#macro>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment