If you are using the News module you will notice that all of your title tags are the same. To customize this goto: Content → News in the admin panel and choose Detail Template. At the very top of the template add:
{assign var=”pagetitle” value=$entry->title|escape}

This line will generate the smarty variable {$pagetitle} containing the title of the news article. To add the variable to your page template, open it and replace your title tag with the following:

{if isset($pagetitle) && !empty($pagetitle)}

{else}

{/if}

Thanks to iCMSinfo.com for this one.