JSFiddle - React, Tailwind, and code Playground

by beneverard

HTML

<script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js"></script>

JavaScript

var tpl = '<div class="entry">\
    <h1>{{title}}</h1>\
    <div class="body">\
    {{body}}\
    </div>\
    </div>';
    
    
var template = Handlebars.compile(tpl);
var context = {title: "My New Post", body: "This is my first post!"}
var html    = template(context);

$('body').append(html);