rule - вставка линейки при постраничной разбивке
Возможные атрибуты:
<?xml version="1.0" encoding="utf-8"?>
<t:templates xmlns:t="/templates/ns" xmlns="http://www.w3.org/1999/xhtml">
<t:template id="index">
<h1><t:var name="title" /></h1>
<t:if expr="{PARENT_TEMPLATE_SRC_DEEP}==0">
<t:childrens template="articles_list" length="10" />
</t:if>
<t:if expr="{PARENT_TEMPLATE_SRC_DEEP}==1">
<t:block template="article" />
</t:if>
</t:template>
<t:template id="articles_list">
<div>
<a href="<t:var name="link" />"><t:var name="title" /></a><br />
<t:var name="description" />
</div>
<t:last><t:rule /></t:last>
</t:template>
<t:template id="articles">
<t:var name="content" />
</t:template>
</t:templates>