Title tag on home using front-page template not showing

Fixed the bug, pasting the solution here.

        <?php
            if (is_front_page()) {
                echo 'Home | ';
                bloginfo('name');
            }
            else {
                wp_title(' | ', true, 'right');
                bloginfo('name');
            }
        ?>