В общем есть код:
$.getJSON("https://spreadsheets.google.com/feeds/list/" + spreadsheetID + "/od6/public/values?alt=json", function(data) {
$(data.feed.entry).filter(function(){
if(this.gsx$slag.$t===location.pathname) return $('section').prepend('<header><h2>'+this.gsx$title.$t+'</h2></header><img src="'+this.gsx$image.$t+'"/><p>'+this.gsx$content.$t+'</p>').exit();
});
$(data.feed.entry).each(function(){
$('section').prepend('<article class="'+this.gsx$type.$t + '"><header><h2>' + this.gsx$title.$t + '</h2></header><img src="'+ this.gsx$image.$t +'"/></article>');
});
});
Он конечно работает, но выглядит стремно ( Подскажет кто как сделать покрасивей?