Files
anpdf/app/views/books.phtml
Andrey Kuvshinov 1b9fdfa519 add picbook_orig
2022-08-23 07:29:16 +00:00

40 lines
1.5 KiB
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($category == 'knigi'):?>
<ul id="book-menu">
<?foreach ($parts as $part):?>
<li<?if($part['partalias'] == $slug):?> style="background: #69c;"<?endif?>><a href="/knigi/<?=$part['partalias']?>"><?=$part['partname']?></a></li>
<?endforeach?>
<li><a href="/category/knigi">Все книги</a></li>
</ul>
<?endif?>
<div class="lib_container">
<?foreach ($books['books'] as $book):?>
<div class="book_skeleton">
<div class="book_mini">
<?$link = SITE.'product/'.$book['priceslug']?>
<a href="<?=$link?>" target="_blank">
<!--<img src="<?//=picbook($book, 180, 280)?>" alt="<?//=$book['pricename']?>">-->
<img src="<?=picbook_orig($book)?>" alt="<?=$book['pricename']?>">
<!-- <img src="https://argumenti.ru/pub/images/price/<?=$book['priceimg']?>" alt="<?=$book['pricename']?>"> -->
</a>
<?if ($book['priceauthor_id'] > 0):?>
<p class="book_mini_title">
<a href="<?=SITE?>author/<?=$book['authorslug']?>"><?=$book['author']?></a>
</p>
<?endif?>
<p class="book_mini_title">
<a href="<?=$link?>"><?=$book['pricename']?></a>
</p>
<p class="price">
<a href="<?=$link?>">Читать ></a>
</p>
</a>
</div>
</div>
<?endforeach?>
</div>
<?include 'blocks/pagenav.phtml'?>