blob: 5a656f7ac31f3206c141852005050397e4722969 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{> header }}
{{ #if this }}
{{ #each this }}
<div class="post" style="width: 420px">
<h2>{{ this.name }}</h4>
<p>{{ this.comment }}</p>
</div>
<br>
{{ /each }}
{{ else }}
<p>no posts today</p>
{{ /if }}
|