Файл: adultscript-2.0.3-pro/files/mobile/templates/default/channel_browse.tpl.php
Строк: 60
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div data-role="content">
<?php echo $this->fetch('channel_menu'); ?>
<?php if ($this->channels): ?>
<br>
<ul data-role="listview" class="has-channel-thumb">
<li data-role="list-divider"><?php echo e($this->title); ?></li>
<?php foreach ($this->channels as $channel): ?>
<li>
<a href="<?php echo MOBILE_REL,'/channel/',$channel['slug'],'/'; ?>" rel="external">
<div class="cthumbContainer"><img src="<?php echo MEDIA_URL,'/channels/',$channel['channel_id'].'.thumb.'.$channel['thumb']; ?>" /></div>
<h5><?php echo e($channel['name']); ?></h5>
<p><?php echo __('views'); ?>: <strong><?php echo $channel['total_views']; ?></strong></p>
<p><?php echo __('videos'); ?>: <strong><?php echo $channel['total_videos']; ?></strong></p>
<p><?php echo __('likes'); ?>: <strong><?php echo $channel['total_likes']; ?></strong></p>
</a>
</li>
<?php endforeach; ?>
</ul>
<br>
<center><?php echo p('pagination', $this->pagination, build_url($this->order, $this->page, $this->letter)) ?></center>
<?php else: ?>
<center><strong><cite>No channels found!</cite></strong></center>
<?php endif; ?>
</div>