Commit 1fbebcd36b55829fb0ba03b6afb97c14ce3f3299

Authored by Leonardo Merlin
2 parents b60b873a 42ea46a2

Merge branch 'fix-handlebars' into 'master'

Fix handlebars

O HTML estava sendo 'escaped'. Problema ocorria com o "#content".

See merge request !11
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
index.html
... ... @@ -24,7 +24,7 @@
24 24 </header>
25 25  
26 26 <div id="content">
27   - <p>{{article.body}}</p>
  27 + {{{article.body}}}
28 28 </div>
29 29  
30 30 <nav>
... ...