gallery.accords-library.com/client/html/posts_page.tpl

48 lines
2.3 KiB
Smarty
Raw Normal View History

<div class='post-list'>
<% if (ctx.results.length) { %>
<ul>
<% for (let post of ctx.results) { %>
<li>
2016-06-11 07:59:29 +00:00
<% if (ctx.canViewPosts) { %>
<a class='thumbnail-wrapper' href='<%= ctx.getPostUrl(post.id, ctx.parameters) %>' title='@<%- post.id %> (<%- post.type %>)&#10;&#10;Tags: <%- post.tags.map(tag => '#' + tag).join(' ') %>'>
2016-06-11 07:59:29 +00:00
<% } else { %>
2016-07-05 19:20:28 +00:00
<a class='thumbnail-wrapper'>
2016-06-11 07:59:29 +00:00
<% } %>
<%= ctx.makeThumbnail(post.thumbnailUrl) %>
<span class='type' data-type='<%- post.type %>'>
<%- post.type %>
</span>
<% if (post.score || post.favoriteCount || post.commentCount) { %>
<span class='stats'>
<% if (post.score) { %>
<span class='icon'>
<i class='fa fa-thumbs-up'></i>
<%- post.score %>
</span>
<% } %>
<% if (post.favoriteCount) { %>
<span class='icon'>
<i class='fa fa-heart'></i>
<%- post.favoriteCount %>
</span>
<% } %>
<% if (post.commentCount) { %>
<span class='icon'>
<i class='fa fa-commenting'></i>
<%- post.commentCount %>
</span>
<% } %>
</span>
<% } %>
</a>
2016-08-28 18:50:48 +00:00
<% if (ctx.canMassTag && ctx.parameters && ctx.parameters.tag) { %>
<a href data-post-id='<%= post.id %>' class='masstag'>
2016-07-05 19:20:28 +00:00
</a>
<% } %>
</li>
<% } %>
<%= ctx.makeFlexboxAlign() %>
</ul>
<% } %>
</div>