View file themes/adaptiv/template/news.view.php

File size: 1.2Kb
<? if ($news['act'] == 2) : ?>
	<div class="msg error">
		Новость находится в <a class="" href="/apanel/news-type?t=trash"><i class="fa fa-trash" aria-hidden="true"></i> корзине</a>
	</div>
<? endif ?>

<h1 class="post_title_2 text-center">
	<?=$news['title']?>
	
	<? if ($news['ToggleBottom']) :?>
		<?=$news['ToggleBottom']?>
	<? endif ?>
</h1>

<div class="text-center post_1">
	<img style="max-width: 99%;border-radius:5px;box-shadow: 2px 2px 9px #bfbfbf;" src="<?=$news['image_big']?>">
</div>

<h2 class="post_2">
	<?=$news['text']?><br/><br/>
	
	<span style="color:#5401d2;">
	<? if ($user AND $user['id_level'] != 0) : ?>
		<i class="fa fa-clock-o" aria-hidden="true"></i> Дата добавления : <?=$news['date_create']?><br/>
	<? endif ?>
	
	<? if ($news['date_public'] != 0) : ?>
		<i class="fa fa-clock-o" aria-hidden="true"></i> Дата публикации : <?=$news['date_public']?><br/>
	<? endif ?>	
	
	<i class="fa fa-user" aria-hidden="true"></i> Новость добавил(а): <?=$news['nick']?><br/>
	<i class="fa fa-globe" aria-hidden="true"></i> Просмотры новости: (<?=$news['view']?>)<br/>

	</span>
	
</h2>



<?