2020-05-12 23:51:27 +03:00
|
|
|
|
<?if ($items['subscript'] == true):?>
|
|
|
|
|
|
<p>Вам доступен весь архив</p>
|
|
|
|
|
|
<?else:?>
|
|
|
|
|
|
<!--<p>Всего покупок: <?=$items['count']?></p>-->
|
|
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="lib_container">
|
|
|
|
|
|
|
|
|
|
|
|
<?foreach ($items['books'] as $book):?>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="book_mini">
|
|
|
|
|
|
<a href="<?=$book['link']?>">
|
|
|
|
|
|
<img src="<?=$book['pic']?>">
|
2020-05-13 01:02:18 +03:00
|
|
|
|
<p class="book_mini_title"><?=$book['pricename']?></p>
|
2020-05-12 23:51:27 +03:00
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?endforeach?>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?include 'blocks/pagenav.phtml'?>
|