12 lines
337 B
PHP
12 lines
337 B
PHP
|
|
<?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?>
|