Gosh, okay. Here, look at line 23:
PHP Code:
get_sidebar( 'footeid="site-generator">
<?php do_action( 'twentyeleven_credits' ); ?>
Php is being initialized, but it hasn't even been closed from last time. It should be this:
PHP Code:
get_sidebar( 'footeid="site-generator"');
do_action( 'twentyeleven_credits' ); ?>
I think that's valid with the quotes, how I put it. I would have thought along these lines myself:
PHP Code:
get_sidebar( "footeid=\"site-generator\"");
do_action( 'twentyeleven_credits' ); ?>
I don't understand the difference between single and double quotes though.
Anyways, see how that works out. It might or might not be all that is causing errors. This code is a total mess if you ask me.