I have put a list of the 10 latest articles (without page-navigation) on my index.php, instead of 10 you can put a higher number in the second last line.. could work in the sidebar too
`
<?php //latest 10 news articles loop on index.php
$x = 1; while (next_news()):?>
<div class="newsarticle">
<a href ="/zenphoto/news/<?php echo getNewsTitleLink();?>">
<?php echo getNewsTitle();?></a>
<div>
<?php if ($x++ >=10) { break;} endwhile; ?>
`