Vulcan/client/views/posts/posts_top.html

11 lines
247 B
HTML
Raw Normal View History

2012-09-18 11:49:17 +09:00
<template name="posts_top">
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
<div class="grid" style="position:absolute;bottom:50px;">
<button class="more">View more</button>
</div>
</template>