Vulcan/client/views/posts/post_item.html

10 lines
298 B
HTML
Raw Normal View History

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