website/views/post-collection.hbs
2018-10-14 19:29:33 +02:00

7 lines
151 B
Handlebars

<h1>Latest posts</h1>
{{#each posts }}
<strong>{{ this.title }}</strong>
<p>{{ this.content }}</p>
<a href="{{ this.url }}">link</a>
<br><br>
{{/each}}