Created
January 26, 2015 11:14
-
-
Save geekhunger/9fd1296be39b975cbb17 to your computer and use it in GitHub Desktop.
Ghost - List of posts inside post.hbs and page.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create this file inside /js/ directory! | |
var getRecentPosts = function(amount, callback) { | |
var rss = $("link[type='application/rss+xml']").attr("href"); | |
$.get(rss, function(data) { | |
var recent = []; | |
var parsed = $.parseXML(data); | |
var posts = $(data).find("item"); | |
if (amount) posts = posts.slice(0, amount); // Only display the first number of posts (defined by amount) | |
for (var i = 0; posts && i < posts.length; i++) { | |
var post = posts.eq(i); | |
recent.push({ | |
title: post.find("title").text(), | |
content: post.find("description").text(), | |
url: post.find("link").text(), | |
date: post.find("pubDate").text() | |
}); | |
} | |
callback(recent); // Done collecting posts, process to callback | |
}); | |
}; | |
var crop = function(str, words) { | |
var cache = str.split(/\s+/, words); | |
return cache.join(" "); | |
} | |
// Gets called on document ready | |
$(function() { | |
var num_posts = 15; | |
var num_words = 40; | |
getRecentPosts(num_posts, function(posts) { // Display [x-null] posts! | |
var template = ""; | |
for (var i = 0; i < posts.length; i++) { | |
var post = posts[i]; | |
var excerpt = crop($("<div/>").html(post.content).text(), num_words); // strip html and crop string! | |
template += "<article class='post-excerpt'><span><time>" + post.date.substr(5, 11) + "</time><h2>" + post.title + "</h2><hr /><p>" + excerpt + "</p></span><a class='pure-button button-s green-green' href='" + post.url + "'>lesen</a></article>"; | |
} | |
$("#posts_list").html(template) | |
}); | |
}); |
How to add post image to the .html(template)?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks jackjack0088. Its working f9. But How can i get my post image through this??
thanks in advance