For my site I'm including the post's title in the sidebar, I know this sounds odd, but the design call for it. The main loop is defined in the index.php file, and I'm including an additional query in the sidebar to show the title.
My issue is that I'm not sure how to echo both the title and the associated permalink.
Here is my code:
<?php
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo
the_title();
endwhile;
// Reset Query
wp_reset_query();
?>
Here is my site: http://svadsi.info/