14 lines
336 B
JSON
14 lines
336 B
JSON
{ "pages": [
|
|
<% articles.each_with_index do |e, i| %>
|
|
{
|
|
"title": "<%= e[:title] %>",
|
|
"url": "<%= url_for(e) %>",
|
|
"text": "<%= excerptize(e.reps[:text].compiled_content, length: 200).gsub(/\n/, ' ') %>",
|
|
"tags": ""
|
|
<% if i < articles.size - 1 %>
|
|
},
|
|
<% else %>
|
|
}
|
|
<% end %>
|
|
<% end %>
|
|
]}
|