Actions

Source Code of This Project

/apps/frontend/modules/news/templates/indexSuccess.php

<script type="text/javascript">
    //<![CDATA[
    $(function(){
        scrollSet = new ScrollSet(<?php echo count($newsList)-1 ?>);
        scrollSet.available(<?php echo bool2str($sf_context->get('scrollSet')) ?>);
        scrollSet.regComponents([new ScrollNav, new ScrollBar, new ScrollItems]);
    });
    //]]>
</script>

<div class="fl">
    <h3 class="pageDesc"><?php echo get_response_meta('description') ?></h3>
    <?php
        $rendered = '';
        foreach($newsList as $news) {
            $rendered .= get_partial('item', compact('news'));
        }
        include_partial('global/scrollItems', compact('rendered'));
    ?>
</div>

<?php include_partial('global/scrollBar') ?>

<div class="clear"></div>

<?php if ($pager->haveToPaginate()): ?>
    <?php include_partial('global/pager', compact('pager')) ?>
<?php endif; ?>