Files
anpdf/app/views/book.phtml
2021-05-16 14:15:10 +03:00

16 lines
840 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.

<div class="book_skeleton">
<div class="book_mini">
<img src="<?=$book['pic']?>">
<p class="book_mini_title"><?=$book['pricename']?></p>
<?if (isset($login['client_id'])):?>
<p><a href="<?=$book['links']['pdf']?>">Режим pdf</a></p>
<p><a href="<?=$book['links']['text']?>">Режим для чтения</a></p>
<p><a href="<?=$book['links']['download']?>">Скачать PDF</a></p>
<?else:?>
<?$paylink = 'https://argumenti.ru/robomail/'.$book['price_id']?>
<p><?=$book['price']?> руб.</p>
<p><a href="<?=$paylink?>">Купить</a></p>
<?endif?>
</div>
<div><?=$book['priceanons']?></div>
</div>