Title gone?

Hi,

Just installed your theme today. The page title is gone. I have double checked that it is actually there (when I swap back to my normal theme the title is there)

Screenshot:

This is expected behavior for this theme when static page is used for front page.

You can add title by adding this line of code to front-page.php file

	<header class="entry-header page-header">
		<h1 class="entry-title"><?php the_title(); ?></h1>
	</header><!-- .entry-header -->

Add this code right after <div class="post-inner-content"> and website title will be back.

I decided to give users more flexibility since you can add title using a regular heading 1 (h1) tag when creating your posts via WordPress dashboard.

Thank you for the quick answer! Solved my problem.