vte:template

vivvo template holder tag

Example:

<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>