Files
anpdf/app/views/books.phtml
Your Name 4a85520a93 s
2022-08-15 17:03:03 +03:00

39 lines
1.4 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="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'?>