1) Modify your news detail templates and add this line:
Code: Select all
{assign var='detail_title' value=$entry->title}
a) Add this code into the section of your page template:
Code: Select all
{capture assign='captured_content'}{content}{/capture}
3) Replace the title section of your page template to look something like this:
Code: Select all
{if isset($detail_title)}
<title>{sitename} - {$detail_title}</title>
{else}
<title>{sitename} - {title}</title>
{/if}