Hi – I love Nirvana. It’s a work in progress, clearly, and I’ve had to work around a few things but on the whole it has a nice, fresh look. The way I’ve set it up, anyway. Thanks!
Oh yeah, the bug. In the latest update (0.9.9.10) the page title is empty and simply displays as the browser’s default (usually the URL). The problem is in header.php on line 14:
<title><?php wp_title( ”, false, ‘right’ );?></title>
should read
<title><?php wp_title( ”, true, ‘right’ );?></title>
or possibly
<title><?php wp_title( ‘|’, true, ‘right’ );?></title>
Next update, perhaps?