Files
anpdf/app/views/allbooks.phtml
Andrey Kuvshinov 426dbaba86 add allbooks
2020-05-12 23:51:27 +03:00

22 lines
492 B
PHTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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']?>">
<p><?=$book['pricename']?></p>
</a>
</div>
<?endforeach?>
</div>
<?include 'blocks/pagenav.phtml'?>