<h2>Latest from Notes Blog</h2>
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . /rss.php);
$rss = fetch_rss(http://notesblog.com/feed/);
$maxitems = 5;
$items = array_slice($rss->items, 0, $maxitems);
?>

<ul>
<?php if (empty($items)) echo <li>Oops, nothing here!</li>;
else
foreach ( $items as $item ) : ?>
	<li><a href=<?php echo $item[link]; ?> title=<?php echo $item[title]; ?>>
	<?php echo $item[title]; ?>
	</a></li>
<?php endforeach; ?>
</ul>