Edit in JSFiddle

<h2>P2PU Feeds ATOM/RSS -> JSONP (http://blogs.p2pu.org/feed/)<hr/></h2><script id="template" type="text/x-jquery-tmpl">
    Title: ${title}<br/>
    Author: ${author}<br/>
    <a target="_blank" href="${link}">Link</a><br/>
    {{html content}}<br/>
    <hr/>
</script>

<div id="info"></div>

              
$.jGFeed('http://blogs.p2pu.org/feed/',function(feeds){
  if(!feeds){
    return false;
  }
  $("#template").tmpl(feeds.entries).appendTo("#info");
}, 4);