if - выполнение условия
Возможные атрибуты:
Дочерние элементы:
<?xml version="1.0" encoding="utf-8"?>
<t:templates xmlns:t="/templates/ns" xmlns="http://www.w3.org/1999/xhtml">
<t:template id="template1">
<t:if expr="'{VARS['title']}'!=''">
<t:then>Заголовок: <t:var name="title" /></t:then>
<t:else>Заголовок пуст</t:then>
</t:if>
<!-- возможно использование краткого синтаксиса -->
<t:if expr="'{VARS['title']}'!=''"><t:var name="title" /></t:if>
</t:template>
</t:templates>