Vulcan/client/views/posts/post_item.html

11 lines
377 B
HTML
Raw Normal View History

2012-09-06 10:18:26 +09:00
<template name="post_item">
<div class="post post-{{rank}} {{#if sticky}}sticky{{/if}} {{inactiveClass}}" id="{{_id}}">
2014-07-04 14:07:50 +09:00
{{#if oneBasedRank}}<span class="post-rank">{{oneBasedRank}}</span>{{/if}}
{{#each postModules}}
<div class="{{templateClass}} {{position}}">
{{> UI.dynamic template=template data=..}}
</div>
2014-07-04 14:07:50 +09:00
{{/each}}
</div>
</template>