<!-- Copy this loop into your template's main content area and save your template as index.php. -->

<!-- Save it, along with an external style sheet, in the folder wp-content/themes/mystyle -->

<!-- Note that you can also use an inline style; sometimes it's better to have both -->

<!-- upload the content to the same folder on the remote server-->

<!-- Then log in and select the new template as the default-->

<!-- Start copying after this line-->

 

<?php
/**
* @package WordPress
* @subpackage Classic_Theme
*
* get_header();
*/
?>

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

 

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>

<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>

 

</div>

 

<?php endwhile; else: ?>

<?php endif; ?>


<p>&nbsp;</p>