szurubooru/public_html/templates/post.tpl
2014-10-18 18:48:27 +02:00

19 lines
416 B
Smarty

<div id="post-view-wrapper">
<div id="sidebar">
<h1>Tags (<%= _.size(post.tags) %>)</h1>
<ul class="tags">
<% _.each(post.tags, function(tag) { %>
<li>
<a href="#/posts/search=<%= tag.name %>">
<%= tag.name %>
<span class="usages"><%= (tag.usages) %></span>
</a>
</li>
<% }) %>
</ul>
</div>
<div id="post-view">
<%= postContentTemplate({post: post}) %>
</div>
</div>