vte:box

children:
vte:params - optional
vte:template - optional
attributes:
module [string] – vivvo module name
params [array] - optional compound representation of parameters
template [string] - path relative to vivvo fs root
* - optional attributes are passed to vivvo module if no vte:params child is specified

If template attribute is specified, module will use this template file for output

Example:

<vte:box module="box_sections">
    <vte:params>
        <vte:param name="id" value="0" />
    </vte:params>
    <vte:template>
        <ul>
            <vte:foreach item="category" from="{categories}">
                <vte:if test="{category.view_subcat}">
                    <li>
                        <a href="{category.get_href}">
                            <vte:value select="{category.category_name}" />
                        </a>
                    </li>
                </vte:if>
            </vte:foreach>
        </ul>
    </vte:template>
</vte:box>