Advertisement
Guest User

Amadeus search.php

a guest
Jul 16th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div class="main">
  5.  
  6.  
  7. <?php include (TEMPLATEPATH . '/l_sidebar.php'); ?>
  8.  
  9.  
  10. <div class="stry">
  11.  
  12. <h1>Search Amadeus</h1>
  13.  
  14. <p>Results for: <strong><?php the_search_query(); ?></strong></p>
  15.  
  16. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  17. <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  18. <?php
  19. /*the_excerpt();*/
  20. if (function_exists('relevanssi_the_excerpt')) { relevanssi_the_excerpt(); };
  21. ?><div style="clear:both;"></div>
  22.  
  23. <!--
  24. <?php trackback_rdf(); ?>
  25. -->
  26.  
  27. <?php endwhile; else: ?>
  28.  
  29. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
  30. <?php posts_nav_link(' &#8212; ', __('&laquo; go back'), __('keep looking &raquo;')); ?>
  31.  
  32. </div>
  33.  
  34.  
  35. </div>
  36.  
  37. <!-- The main column ends -->
  38.  
  39. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement