Files
anpdf/app/views/antext.phtml

38 lines
1.2 KiB
PHTML
Raw Normal View History

2020-05-22 15:32:05 +03:00
<script>
var newcurr = '<?=$newcurr?>',
baseurl ='<?=$baseurl?>',
nexturl = '<?=$nexturl?>',
newcurr ='<?=$newcurr?>',
prevurl = '<?=$prevurl?>';
</script>
<?include ('blocks/pgtextnav.phtml')?>
2020-05-22 13:21:37 +03:00
<div id="an_text_block">
2020-05-22 15:32:05 +03:00
<?if (count($content) > 0):?>
2020-05-22 13:21:37 +03:00
<?foreach($content as $news):?>
<h2 class="antitle"><?=$news['title']?></h2>
<?if ($news['img'] !== ''):?>
<figure class="anphoto">
2020-05-22 15:32:05 +03:00
<?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?>
2020-05-22 13:21:37 +03:00
</figure>
<?endif?>
<div class="antext"><?=$news['text']?></div>
<?endforeach?>
2020-05-22 15:32:05 +03:00
<?else:?>
<p>Данная страница недоступна в мобильной версии</p>
<p>Перейдите на <a href="<?=$nexturl?>">следующую страницу</a></p>
<?endif?>
</div>
<?include ('blocks/pgtextnav.phtml')?>