szurubooru/public_html/templates/post-notes.tpl

18 lines
343 B
Smarty
Raw Normal View History

<div class="post-notes">
<% _.each(notes, function(note) { %>
<div class="post-note"
style="left: <%= note.left %>px;
top: <%= note.top %>px;
width: <%= note.width %>px;
height: <%= note.height %>px">
2014-10-25 15:02:46 +02:00
<div class="text-wrapper">
<div class="text">
<%= note.text %>
</div>
</div>
2014-10-25 15:02:46 +02:00
</div>
<% }) %>
</div>