I looked at several themes' index.php files
HTML Code:
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_time('j F Y'); ?></a>
<a href="<?php the_permalink() ?>" rel="bookmark" class="postlink" title="<?php bloginfo('name');?>: <?php the_title(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink(); ?>" title="Permalink for <?php the_title(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>" title="<?php printf(__('Permalink to %s', 'sandbox'), wp_specialchars(get_the_title(), 1)) ?>" rel="bookmark"><?php the_title() ?></a>
<a href="<?php the_permalink(); ?>" title="Permalink for <?php the_title(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
It looks like the usual syntax is similar to yours. I'm thinking those links are a result of
PHP Code:
<a title="Original Video Series"
href="<?php wp_list_pages('title_li=&depth=1'); ?>
<li>|</li>
<li><?php wp_loginout(); ?> </li>
</ul>
</div><br/>
PHP Code:
href="<?php wp_list_pages('title_li=&depth=1'); ?>
<li>
would get rendered something like
PHP Code:
href="<li class="page_item page-item-12">
<a href="http://www.mittineague.com/blog/blog-map/"
title="Blog Map">Blog Map</a></li>
....[a li-/li for each additional page here]
<li>
and with the unclosed a tag and mixed up mark-up, it is probable the those site/year/month/title/site links are the "best guess" that the search bot could come up with.
Bookmarks