<article class="aboutarticle">
<?php // Display blog posts on any page @ http://m0n.co/l
$temp = $wp_query; $wp_query= null;
$wp_query = new WP_Query(); $wp_query->query('showposts=1' . '&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php if ($paged <= 1) { ?>
<?php } else { ?>
<?php } ?>
</article>