123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- ?>
- <li class="<?php print $classes; ?>"<?php print $attributes; ?>>
- <?php print render($title_prefix); ?>
- <h3 class="title"<?php print $title_attributes; ?>>
- <a href="<?php print $url; ?>"><?php print $title; ?></a>
- </h3>
- <?php print render($title_suffix); ?>
- <div class="search-snippet-info">
- <?php if ($snippet): ?>
- <p class="search-snippet"<?php print $content_attributes; ?>><?php print $snippet; ?></p>
- <?php endif; ?>
- <?php if ($info): ?>
- <p class="search-info"><?php print $info; ?></p>
- <?php endif; ?>
- </div>
- </li>
|