rendered paste body<!--See Note 1-->
<ul id="nav">
<!--See Note 2-->
<?php if(is_home() && !is_paged()){ ?>
<li class="current_page_item">
<a href="<?php echo get_settings('home'); ?>" title="You are Home">Blog Navigation</a>
</li>
<?php } else { ?>
<li>
<a href="<?php echo get_settings('home'); ?>" title="Click for Home">Blog Home</a>
</li>
<?php } ?>
<!--See Note 3-->
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
<!--See Note 4-->
<li>
<a class="rss" rel="alternate" href="<?php bloginfo('rss2_url'); ?>" title="Really Simply Syndication">RSS Feed</a>
</li>
</ul>