1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- ?>
- <div class="<?php print $classes; ?>">
- <?php print render($title_prefix); ?>
- <?php if ($title): ?>
- <?php print $title; ?>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
- <?php if ($header): ?>
- <div class="view-header">
- <?php print $header; ?>
- </div>
- <?php endif; ?>
- <?php if ($exposed): ?>
- <div class="view-filters">
- <span class="title"><?php print t('Filters'); ?></span>
- <?php print $exposed; ?>
- </div>
- <?php endif; ?>
- <?php if ($pager): ?>
- <div class="pager">
- <?php print $pager; ?>
- </div>
- <?php endif; ?>
- <?php if ($attachment_before): ?>
- <div class="attachment attachment-before">
- <?php print $attachment_before; ?>
- </div>
- <?php endif; ?>
- <?php if ($rows): ?>
- <div class="view-content">
- <?php print $rows; ?>
- </div>
- <?php elseif ($empty): ?>
- <div class="view-empty">
- <?php print $empty; ?>
- </div>
- <?php endif; ?>
- <?php if ($pager): ?>
- <div class="pager">
- <?php print $pager; ?>
- </div>
- <?php endif; ?>
- <?php if ($attachment_after): ?>
- <div class="attachment attachment-after">
- <?php print $attachment_after; ?>
- </div>
- <?php endif; ?>
- <?php if ($more): ?>
- <?php print $more; ?>
- <?php endif; ?>
- <?php if ($footer): ?>
- <div class="view-footer">
- <?php print $footer; ?>
- </div>
- <?php endif; ?>
- <?php if ($feed_icon): ?>
- <div class="feed-icon">
- <?php print $feed_icon; ?>
- </div>
- <?php endif; ?>
- </div><?php /* class view */ ?>
|