<?php get_header(); ?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    
    <?php print sf_theme_box_top(); ?>

        <div class="entry post">
        
        <div class="teaser"><?php
        
if (''!=trim($post->post_excerpt))
          print 
sf_theme_get_the_teaser(false);
        
?></div>

        <?php print sf_theme_postmeta(true); ?>

        <?php print sf_theme_get_the_content(); ?>

        </div>

    <?php print sf_theme_box_bottom(); ?>

    <div class="editlink"><?php print edit_post_link('Rediger dette indl&aelig;g.','',''); ?></div>

    <?php comments_template(); ?>

<?php endwhile; else: ?>

    <?php include (TEMPLATEPATH "/searchmessage.php"); ?>
    
<?php endif; ?>
    
<?php get_footer(); ?>