I want to add the new facebook "like" button to my Blogger website.
I have to pass the URL to the blog posts in the iframe src.
I can get the Blogger posts URL from <data:post.url/> but I can't put that in a src string because Blogger's template system is weird.
I want to do this:
<iframe allowTransparency='true' frameborder='0' scrolling='no'
src='http://www.facebook.com/plugins/like.php?href=<data:post.url/>&layout=standard&show-faces=true&width=450&action=like&colorscheme=light'
style='border:none; overflow:hidden; width:450px; height:px'/>
but Blogger complains:
Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The value of attribute "src" associated with an element type "null" must not contain the '<' character."
Does anybody have this working yet?