<?php/*
Template Name: Tagcloud
*/
?>

<?php get_header(); ?>

<div id="content">
    
    <?php if (have_posts()) : ?>
    
        <?php while (have_posts()) : the_post(); ?>
        
                <h1 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent-Link: <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                <?php the_content(); ?>

                <?php del_tagcloud(''''7); ?>

    <?php endwhile; endif; ?>
    
</div>

<div id="sidebar">
    
</div>

<?php get_footer(); ?>