Файл: adultscript-2.0.3-pro/files/mobile/templates/default/news_browse.tpl.php
Строк: 27
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div data-role="content">
<?php echo $this->fetch('news_menu'); ?>
<?php if ($this->articles): ?>
<?php foreach ($this->articles as $article): ?>
<div class="ui-bar ui-bar-b">
<h3><?php echo e($article['title']); ?></h3>
</div>
<div class="ui-body ui-body-b">
<?php echo __('from'),' ','<a href="',MOBILE_REL,'/users/',$article['username'],'/">',e($article['username']),'</a> ',VDate::nice($article['add_date']); ?>
<p>
<?php echo $article['content']; ?>
</p>
</div>
<?php endforeach; ?>
<br>
<center><?php echo p('pagination', $this->pagination, MOBILE_URL.'/news/'.$this->year.$this->month.'#PAGE#/'); ?></center>
<?php else: ?>
<center><strong><cite>No news found!</cite></strong></center>
<?php endif; ?>
</div>