4 lines
218 B
Plaintext
4 lines
218 B
Plaintext
<% notes.each do |note| %>
|
|
<%= content_tag(:article, "", "data-width" => note.width, "data-height" => note.height, "data-x" => note.x, "data-y" => note.y, "data-body" => note.body, "data-id" => note.id) %>
|
|
<% end %>
|