2012-09-18 11:49:17 +09:00
|
|
|
<template name="posts_new">
|
2012-10-05 22:46:20 +09:00
|
|
|
{{#if canView replace}}
|
2012-10-09 12:02:37 +09:00
|
|
|
<a href="#" class="prev-link">Previous Page</a>
|
|
|
|
<a href="#" class="next-link">Next Page</a>
|
2012-10-05 14:08:46 +09:00
|
|
|
<div class="posts grid list">
|
|
|
|
{{#each posts}}
|
|
|
|
{{> post_item}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2012-10-08 16:12:47 +02:00
|
|
|
|
2012-10-09 12:02:37 +09:00
|
|
|
<!-- <div class="grid" style="position:absolute;bottom:50px;">
|
2012-10-08 16:12:47 +02:00
|
|
|
<button class="more">View more</button>
|
2012-10-09 12:02:37 +09:00
|
|
|
</div> -->
|
2012-10-05 14:08:46 +09:00
|
|
|
{{/if}}
|
2012-09-04 15:15:12 +09:00
|
|
|
</template>
|