2021-10-14 13:37:43 +03:00
|
|
|
|
<?if($category == 'knigi'):?>
|
2021-10-14 13:16:48 +03:00
|
|
|
|
<ul id="book-menu">
|
|
|
|
|
|
<?foreach ($parts as $part):?>
|
2021-10-14 14:28:42 +03:00
|
|
|
|
<li<?if($part['partalias'] == $slug):?> style="background: #69c;"<?endif?>><a href="/knigi/<?=$part['partalias']?>"><?=$part['partname']?></a></li>
|
2021-10-14 13:16:48 +03:00
|
|
|
|
<?endforeach?>
|
2021-10-14 14:31:12 +03:00
|
|
|
|
<li><a href="/category/knigi">Все книги</a></li>
|
2021-10-14 13:16:48 +03:00
|
|
|
|
</ul>
|
2021-10-14 13:37:43 +03:00
|
|
|
|
<?endif?>
|
2021-05-16 14:15:10 +03:00
|
|
|
|
<div class="lib_container">
|
2021-05-24 01:13:43 +03:00
|
|
|
|
<?foreach ($books['books'] as $book):?>
|
2021-05-16 14:15:10 +03:00
|
|
|
|
<div class="book_skeleton">
|
|
|
|
|
|
<div class="book_mini">
|
2021-05-24 01:13:43 +03:00
|
|
|
|
<?$link = SITE.'product/'.$book['priceslug']?>
|
|
|
|
|
|
<a href="<?=$link?>" target="_blank">
|
2022-08-23 10:21:45 +03:00
|
|
|
|
<img src="<?=picbook_orig($book)?>" alt="<?=$book['pricename']?>">
|
2022-08-23 11:48:09 +03:00
|
|
|
|
<!-- <img src="https://argumenti.ru/pub/images/price/<?=$book['priceimg']?>" alt="<?=$book['pricename']?>"> -->
|
2021-07-28 14:24:32 +03:00
|
|
|
|
</a>
|
2021-08-17 00:44:56 +03:00
|
|
|
|
<?if ($book['priceauthor_id'] > 0):?>
|
2021-08-17 00:02:41 +03:00
|
|
|
|
<p class="book_mini_title">
|
|
|
|
|
|
<a href="<?=SITE?>author/<?=$book['authorslug']?>"><?=$book['author']?></a>
|
|
|
|
|
|
</p>
|
2021-08-17 00:44:56 +03:00
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
2021-08-17 00:02:41 +03:00
|
|
|
|
<p class="book_mini_title">
|
|
|
|
|
|
<a href="<?=$link?>"><?=$book['pricename']?></a>
|
|
|
|
|
|
</p>
|
2021-07-28 14:24:32 +03:00
|
|
|
|
<p class="price">
|
2022-06-29 19:35:45 +03:00
|
|
|
|
<a href="<?=$link?>">Читать ></a>
|
2021-07-28 14:24:32 +03:00
|
|
|
|
</p>
|
2021-05-16 14:15:10 +03:00
|
|
|
|
</a>
|
2021-05-24 01:13:43 +03:00
|
|
|
|
|
2021-05-16 14:15:10 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?endforeach?>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?include 'blocks/pagenav.phtml'?>
|