To remove the metadata (Date and Author Line) from below the post/page title, delete or comment out this section:
if ($single || $metadata) {
print '<p class="metadata">'. get_the_time('F jS, Y') . ' by ' . get_the_author() . '</p>';
}
To remove the top menu, you’ll have to edit code that is in the header.php file, not the index file.
To remove the post/page title, delete or comment out the following line:
print '<h1>' . get_the_title() . '</h1>';
Hope that helps!