You have a few escaping issues, that Firefox nicely hi-lights if you view the source. For example, if the title of an article contains a ", you don't quote it, so in the html you end up with attributes like this: title="something "something else"" You also don't escape ampersands. Eg: x & y Should be: x & y I imagine there is a more general issue with a lack of escaping, but these are just a couple of examples I…
Update: Fixed. I think, but those & are still showing up red in source.