Компонетнт "Каталог.Секция". Сам шаблон ниже.
--------------------------------------------------------------------------
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
<div class="catalog-section">
<?=$arResult["NAV_STRING"]?>
<table class="data-table" cellspacing="2" cellpadding="2" width="100%" style="border:solid 1px #CCC;background:#FFF">
<thead>
<tr>
<td valign="bottom" style="background:#C9E2ED; font-weight:bold;height:20px;">Расположение</td>
<?foreach($arResult["ITEMS"][0]["DISPLAY_PROPERTIES"] as $arProperty):?>
<td valign="bottom" style="background:#C9E2ED; font-weight:bold;height:30px;"><?=$arProperty["NAME"]?></td>
<?endforeach;?>
</tr>
</thead>
<?foreach($arResult["ITEMS"] as $arElement):?>
<tr>
<td style="background:#F2F2F2">
<a href="<?=$arElement["DETAIL_PAGE_URL"]?>"><?=$arElement["NAME"]?></a>
<?if(count($arElement["SECTION"]["PATH"])>0):?>
<br />
<?foreach($arElement["SECTION"]["PATH"] as $arPath):?>
/ <a href="<?=$arPath["SECTION_PAGE_URL"]?>"><?=$arPath["NAME"]?></a>
<?endforeach?>
<?endif?>
</td>
<?foreach($arElement["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?>
<td height="20px" style="background:#F2F2F2">
<?if(is_array($arProperty["DISPLAY_VALUE"]))
echo implode(" / ", $arProperty["DISPLAY_VALUE"]);
else
echo $arProperty["DISPLAY_VALUE"];?>
</td>
<?endforeach?>
</tr>
<?endforeach;?>
</table>
<?=$arResult["NAV_STRING"]?>
</div>