add_action(‘__before_main_container’ , ‘my_content_before_main_container’ , 0);
function my_content_before_main_container() {
if (! is_home() || !is_front_page() )
return;
?>

This is a big title

<?php
}