Correcting Page Titles in the Blogger Platform

Does anybody know how I can coax my blog (hosted by Google’s Blogger) to show page titles with the page name first and then the blog name? When I had my prior template it was in PHP and I was able to make the change fairly easily but it seems to use a different language now that I don’t know how to work with. A key part is clearly here:

<title><data:blog.pageTitle/></title>

and I tried changing it to:

<title><data:pageTitle.blog/></title>

but then I got a big error message. Any thoughts?

Thanks! Now go get yourself some tacos…

glad it helped. :slight_smile:
looks good…but now I’m craving tacos. :stuck_out_tongue:

just in case you plan on doing any other modifications, here’s a few reference pages that might help…
Layouts Data Tags
Widget Tags for Layouts

Thank you! I hadn’t found a solution and I never would’ve arrived at that one. Here’s an example of it working: http://ocmexfood.blogspot.com/2010/09/sanchos-tacos.html

just in case you haven’t come up with a solution, try this:

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>

found at: http://www.google.com/support/forum/p/blogger/thread?tid=1007d86e68f96ecd&hl=en

I tried it on a test Blogger account and it seemed to work.