<?php get_header(); ?>

<h2><?php print (''!=$s)?'Søgeresultater for "'.htmlspecialchars($s).'" '.(is_paged()?' (side '.$paged.')':''):'Søg'?></h2>

    <?php $sf_forside_forfatter=get_settings('sf_forside_forfatter'); ?>

    <?php print sf_theme_box_top(); ?>

    <?php if (have_posts() && ''!=$s) : ?>

        <?php while (have_posts()) : the_post(); ?>
                
            <div class="post">

                <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
                <?php print sf_theme_postmeta(); ?>
                <div class="teaser">
                    <?php print sf_theme_get_the_teaser(); ?>
                </div>

            </div>
    
        <?php endwhile; ?>

    <?php else : ?>

        <?php if (''!=$s) { ?>
        <h3>Vi kunne desværre ikke finde indlæg der passede til søgekriterierne.</h3>
        <p>Prøv evt. med en ny søgning, eller brug en af de andre metoder til at finde det du leder efter.</p>
        <hr/>
        <?php } else $s=''?>

        <?php include (TEMPLATEPATH '/searchform.php'); ?>

    <?php endif; ?>
        
    <?php print sf_theme_box_bottom(); ?>

    <?php if (have_posts() && ''!=$s) : ?>

        <div class="navigation">
            <div class="alignleft"><?php next_posts_link('&laquo; Tidligere indlæg'?></div>
            <div class="alignright"><?php previous_posts_link('Senere indlæg &raquo;'?></div>
        </div>

    <?php endif; ?>

<?php get_footer(); ?>