Merge pull request #288 from wagenet/handlebars

Add Handlebars
This commit is contained in:
Joshua Peek
2012-12-10 07:06:59 -08:00
3 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<div class="entry">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</div>

View File

@@ -0,0 +1,11 @@
<div class="post">
<h1>By {{fullName author}}</h1>
<div class="body">{{body}}</div>
<h1>Comments</h1>
{{#each comments}}
<h2>By {{fullName author}}</h2>
<div class="body">{{body}}</div>
{{/each}}
</div>