pageRow.ftl

 1   <#--
 2   Macro: pageRow
 3   Description: Generates a row element.
 4   Parameters:
 5   - id (string, optional): the ID of the container element.
 6   - width (string, optional): the width of the container element;
 7   - class (string, optional): the CSS class of the container element.
 8   -->
 9   <#macro pageRow id='' width='' class=''>
 10   <div class="row">
 11   	<div class="container-fluid">
 12   	<#nested>
 13   	</div>
 14   </div>
 15   </#macro>