1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- ?>
- <?php if (!empty($result_count)) : ?>
- <div class="search-api-page <?php print 'search-api-page-' . $page_machine_name . ' view-mode-' . $variables['view_mode'];?>">
- <?php if ($result_count) : ?>
- <?php print render($search_performance); ?>
- <?php print render($spellcheck); ?>
- <h2><?php print t('Search results');?></h2>
- <?php if ($variables['view_mode'] == 'search_api_page_result') : // Uses child template. ?>
- <?php print render($search_results); ?>
- <? else : // All other view modes (Teaser, Full content, RSS and so forth). ?>
- <div class="search-results">
- <?php print render(entity_view($index->item_type, $items, $variables['view_mode'])); ?>
- </div>
- <?php endif; ?>
- <?php print $pager; ?>
- <?php else : ?>
- <h2><?php print t('Your search yielded no results.');?></h2>
- <?php endif; ?>
- </div>
- <?php endif; ?>
|