В макет вставить код
<?
/* Вывод информационных систем */
$InformationSystem = new InformationSystem();
$information_groups_id = 0;
$external_propertys=array();
$external_propertys['ОтображатьСсылкуНаАрхив']=1;
$external_propertys['ОтображатьСсылкиНаСледующиеСтраницы']=0;
$InformationSystem->ShowInformationSystem(1, $information_groups_id, 'NameXSLTemplate', 2,0,$external_propertys);
?>
Ну и надо будет написать соответствующий XSL шаблон. Вот пример моего
<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml" />
<xsl:template match="/">
<xsl:apply-templates select="/document/blocks"/>
</xsl:template>
<xsl:template match="/document/blocks">
<div class="news">
<h1 class="title"><img src="/images/main/news.gif" alt="Наши новости" align="right" /></h1>
<dl>
<xsl:apply-templates select="items/item"/>
</dl>
<a href="{url}" class="arhive">Перейти в архив новостей</a>
</div>
</xsl:template>
<xsl:template match="item">
<dt>
<xsl:value-of disable-output-escaping="yes" select="item_date"/>
</dt>
<dd>
<h3><xsl:value-of disable-output-escaping="yes" select="item_name"/></h3>
<p><xsl:value-of disable-output-escaping="yes" select="item_description"/></p>
<a href="{item_path}" class="more">Читать далее</a>
</dd>
</xsl:template>
</xsl:stylesheet>