forked from wezm/wezm.net
7 lines
133 B
JSON
7 lines
133 B
JSON
|
<%
|
||
|
articles = []
|
||
|
sorted_articles.each do |article|
|
||
|
articles << { :title => article[:title] }
|
||
|
end
|
||
|
%>
|
||
|
<%= articles.to_json %>
|