I am utilising a code variation from Calguy which includes placing this code in the "Blog template" tab of the Blogs module:
Code: Select all
{assign var='pagetitle' value=$entry->title}
Code: Select all
<title>{$the_pagetitle}</title>
Code: Select all
{content assign='mycontent'} {*generates detail view titles*}
{* allow adjusting the page title, using a default *}
{if isset($pagetitle)}
{capture assign='the_pagetitle'}{$pagetitle} | {sitename}{/capture}
{else}
{capture assign='the_pagetitle'}{title} | {sitename}{/capture}
{/if}