Vulcan/client/views/posts/posts_new.html
2012-10-09 12:02:37 +09:00

15 lines
No EOL
386 B
HTML

<template name="posts_new">
{{#if canView replace}}
<a href="#" class="prev-link">Previous Page</a>
<a href="#" class="next-link">Next Page</a>
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
</div>
<!-- <div class="grid" style="position:absolute;bottom:50px;">
<button class="more">View more</button>
</div> -->
{{/if}}
</template>