Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="content-search">
  3. <?php if (have_posts()) : ?>
  4.  
  5. <?php while (have_posts()) : the_post(); ?>
  6. <div class="search-news">
  7. <div class="search_therms">
  8. <h2 class="search_h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'link til') ?> <?php the_title_attribute(); ?>" ><b><?php the_title(); ?></b></a></h2>
  9. <div class="search-content"><?php the_excerpt(); ?></div>
  10. </div>
  11. <div class="read-more"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'link til') ?> <?php the_title_attribute(); ?>" ><b>Les mer</b></a></div>
  12. <center><img src="<?php bloginfo('stylesheet_directory'); ?>/images/news-line.png" /></center>
  13.  
  14. </div><!-- end of search -->
  15. <?php endwhile; ?>
  16. <?php wp_pagenavi(); ?>
  17. <?php else: ?>
  18. <div class="error-search"><p>Beklager, ingen artikler eller sider<br /> stemte med dine søkekriterier, kanskje et nytt søk vil hjelpe?</p><br /> <div class="search-bar"><?php include 'searchform.php'; ?></div></div>
  19. <?php endif; ?>
  20. </div>
  21. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement