Dette er koden: <?php get_header(); ?>
<div id="content-wrapper">
<div id="content">
<?php query_posts('order=asc'); ?><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<span class="date"><?php the_time('j.m.y') ?> <!-- af <?php the_author() ?> --></span><h3 class="post-title">" rel="bookmark" title="Permanent link til <?php the_title(); ?>"><?php the_title(); ?></h3>
<p><?php the_content('Læs resten af dette indlæg »'); ?></p>
<div class="commentbox"><?php the_tags('Tags: ', ', ', '
'); ?> | Udgivet <?php the_category(', ') ?> | <?php edit_post_link('Redigér', '', ' | '); ?> <?php comments_popup_link('Ingen kommentarer »', '1 kommentar »', '% kommentarer »'); ?></div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Ældre indlæg') ?></div>
<div class="alignright"><?php previous_posts_link('Nyere indlæg »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Ikke fundet</h2>
<p class="center">Beklager, men du leder efter noget, der ikke er der.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>