Файл: adultscript-2.0.3-pro/files/mobile/templates/default/categories.tpl.php
Строк: 15
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div data-role="content">
<?php if ($this->categories): ?>
<ul data-role="listview" data-inset="true">
<?php foreach ($this->categories as $category): ?>
<li><a href="<?php echo MOBILE_REL,'/',$category['slug'],'/'; ?>" rel="external"><?php echo e($category['name']); ?> <span class="ui-li-count"><?php echo $category['total_videos']; ?></span></a></li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<blockquote><strong><cite>No categories found!</cite></strong></blockquote>
<?php endif; ?>
</div>