blob: b9a0cb6e3e472e23288e0a72aae6af14bfce2749 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<article id="{{ id }}">
<hgroup>
<h2><a href="/post/{{ id }}">{{ title }} </a></h2>
<h3><a href="#{{ id }}">{{ formated_date }}</a></h3>
</hgroup>
{{{ body }}}
{{#if tags}}
<footer>
<h4>Tags</h4>
<ul class="tags">
{{#each tags}}
<li><a href="/tags/{{ this }}">{{ this }}</a></li>
{{/each}}
</ul>
</footer>
{{/if}}
</article>
|