Actions

Source Code of This Project

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

<?php if (!empty($foundRendered)): ?>
    <script type="text/javascript">
        //<![CDATA[
        $(function(){
            scrollSet = new ScrollSet(<?php echo $countFoundSlice-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 include_partial('global/scrollItems', array('rendered' => $foundRendered)); ?>
    </div>

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

    <?php if ($pager->haveToPaginate()): ?>
        <?php include_partial('global/pager', array('pager' => $pager, 'hide_order' => true)) ?>
    <?php endif; ?>

<?php else: ?>

    <div class="fl" style="margin-bottom: 2em;">
        <p>Your search - <b><?php echo $sf_params->get('query') ?></b> - did not match any documents.  </p>
        <p style="margin-top: 1em;">Suggestions:</p>
        <ul>
            <li>Make sure all words are spelled correctly.</li>
            <li>Try different keywords.</li>
            <li>Try more general keywords.</li>
            <li>Try fewer keywords.</li>
        </ul>
    </div>
    <div class="clear20"></div>

<?php endif; ?>