Files
anpdf/app/views/antext.phtml
Andrey Kuvshinov 8408c7d64f correct pdf title
2020-05-22 17:06:42 +03:00

44 lines
1.4 KiB
PHTML

<script>
var newcurr = '<?=$newcurr?>',
baseurl ='<?=$baseurl?>',
nexturl = '<?=$nexturl?>',
newcurr ='<?=$newcurr?>',
prevurl = '<?=$prevurl?>';
</script>
<?include ('blocks/pgtextnav.phtml')?>
<div id="an_text_block">
<?if (count($content) > 0):?>
<?foreach($content as $news):?>
<h2 class="antitle"><?=$news['title']?></h2>
<?if ($news['img'] !== ''):?>
<figure class="anphoto">
<?if (in_array($news['img'], ['jpg', 'png', 'gif', 'jpeg', 'JPG'])):?>
<img src="https://imgurl.argumenti.ru/news/news_id/<?=$news['news_id']?>.<?=$news['img']?>" />
<?else:?>
<img src="https://imgurl.argumenti.ru/news/news_id/<?=$news['img']?>" />
<?endif?>
</figure>
<?endif?>
<div class="antext"><?=$news['text']?></div>
<?endforeach?>
<?else:?>
<p>Данная страница недоступна в мобильной версии</p>
<p>Перейдите на <a href="<?=$nexturl?>">следующую страницу</a></p>
<p>Или <a href="<?=$full_ver_url?>">откройте pdf-версию</a></p>
<?endif?>
</div>
<?include ('blocks/pgtextnav.phtml')?>
<div class="header-div">
<a href="<?=$full_ver_url?>">Полная версия газеты</a>
</div>