Files
vij/blocks/top.php

12 lines
337 B
PHP
Raw Normal View History

2022-12-29 07:23:18 +03:00
<?if(isset($items)):?>
<div class="mosts<?if ($subclass !== '') echo ' '.$subclass;?>">
<h3 class="most_title">Самое читаемое</h3>
<?php foreach($items as $item):?>
<div class="most"><a href="<?=$item['link']; ?>"><?=$item['title']?></a></div>
<?php endforeach;?>
</div>
<?endif?>