April 27, 2007
Neo needs a fix
This post is for all those using Neo. Looks like Blogger has changed their JSON feed content slightly in their latest code drop. They seem to have killed index.html (as Steven wanted). This will cause Neo to misbehave. It will show the title Posts labelled "" instead of Recent Posts in the second column. Here's how you can fix this in your template. Find this section of code
if (label == "index.html") {
labeltitle.innerHTML = '<center><h2>Recent Posts</h2></center><hr/>';
} else {
labeltitle.innerHTML = '<h2>Posts labelled "' + label + '"</h2>';
and change the first line in red to this instead.
if (label == "") {
If this doesn't fix the problem, let me know.



