Files
anpdf/app/views/book.phtml
2021-06-11 09:45:27 +00:00

19 lines
796 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.

<section id="row">
<div id="book_id">
<img style="width:100%;" src="<?=$book['pic']?>">
</div>
<div id="priceanons">
<p class="pricename"><?=$book['pricename']?></p>
<?=$book['priceanons']?>
<?if ($buy_status):?>
<p class="price"><a href="<?=$book['links']['pdf']?>">Читать PDF</a></p>
<!-- <p><a href="<?=$book['links']['text']?>">Читать текст</a></p> -->
<?if ($book['category_id'] == 1):?>
<p><a href="<?=$book['links']['download']?>">Скачать PDF</a></p>
<?endif?>
<?else:?>
<?$paylink = 'https://argumenti.ru/robomail/'.$book['price_id']?>
<p class="price"><a href="<?=$paylink?>">Купить за <?=$book['price']?> руб.</a></p>
<?endif?>
</div>
</section>