The Loop
The first and most important.
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class='content'>
<h1><?php the_title();?></h1>
<?php the_content('more') ?>
<br /><?php edit_post_link('edit'); ?>
</div>
<?php endwhile;endif; ?>
<?php get_footer(); ?>