Skip to content

Instantly share code, notes, and snippets.

@masarufuruya
Created February 16, 2014 07:11
Show Gist options
  • Save masarufuruya/9030427 to your computer and use it in GitHub Desktop.
Save masarufuruya/9030427 to your computer and use it in GitHub Desktop.
middlemanのブログ一覧をjsonで返すコード
<%
entries = []
blog.articles.each do |article|
entry = {
:title => article.title,
:url => article.url,
:content => article.body
}
entries << entry
end
%><%=entries.to_json %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment