Hi,
use a conditional tag - http://codex.wordpress.org/Conditional_Tags
go to your footer.php, and wrap the things you want to exclude from Pages with below code.
<?php if ( ! is_page() ) {?>
things you want to exclude...
<?php }?>
hope that helps!