bingus-blog/templates/post_list.hbs

11 lines
333 B
Handlebars
Raw Normal View History

2025-01-29 16:35:18 +03:00
{{#each posts}}
<div class="post">
<section>
<a href="/posts/{{name}}"><b>{{title}}</b></a>
<span class="post-author">- by {{author}}</span>
</section>
<section role="paragraph">{{description}}</section>
{{>post_table post style=@root.style}}
</div>
{{else}} there are no posts right now. check back later! {{/each}}