OK !!!
I never use Twenty Ten theme !
Absolutely, index.php doesn't contains the body content, it contains only template calls !
start with the first point : Remove "posted by..." META
From what I saw in this theme, you have to edit these 2 loop files :
But do not edit the files loop-page.php and loop-attachment.php
In each loop file, you have to remove the lines for "Posted on" :
<div class="entry-meta">
<?php twentyten_posted_on(); ?>
</div><!-- .entry-meta -->
I advise you to hide them instead of remove them !
You can hide them by adding <!-- thewyse has disabled this line/field at start and --> at the end, like that :
<!-- thewyse has disabled this line/field
<div class="entry-meta">
<?php twentyten_posted_on(); ?>
</div><!-- .entry-meta -->
-->
Do the same for the "Posted by" (Author info)
[code moderated - please follow the forum rules for posting code, and use the pastebin]
Then, update these 2 loop files in your server, and refresh the home page !
Regards