szurubooru/client/html/comments_page.tpl

19 lines
753 B
Smarty
Raw Normal View History

<div class='global-comment-list'>
<ul><!--
2017-02-09 00:48:06 +01:00
--><% for (let post of ctx.response.results) { %><!--
--><li><!--
--><div class='post-thumbnail'><!--
--><% if (ctx.canViewPosts) { %><!--
--><a href='<%- ctx.formatClientLink('post', post.id) %>'><!--
--><% } %><!--
--><%= ctx.makeThumbnail(post.thumbnailUrl) %><!--
--><% if (ctx.canViewPosts) { %><!--
--></a><!--
--><% } %><!--
--></div><!--
--><div class='comments-container' data-for='<%- post.id %>'></div><!--
--></li><!--
--><% } %><!--
--></ul>
</div>