Код |
---|
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?> <div class="phone_list"> <?foreach($arResult["SECTIONS"] as $arSection):?> <div class="section"> <h3 class="section_title"> <? echo $arSection["NAME"]; ?> </h3> <table class="items_list"> <?foreach($arSection["ITEMS"] as $arItem):?> <tr class="item"> <td class="phone"> <? echo $arItem["DISPLAY_PROPERTIES"]["PHONE"]["VALUE"]; ?> </td> </tr> <?endforeach;?> </table> </div> <?endforeach;?> </div> |