JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://i.cdn.turner.com/nba/nba/.element/media/2.0/teamsites/warriors/js/dust-full.2.3.1.min.js"></script>
<div id="entry-template">
{title}

<ul>
    {#names}
    <li>{name}</li>{~n}
    {/names}
</ul>
</div>

JavaScript

$(document).ready(function () {
    var data = {
        "title": "Famous People", 
        "names" : [{ "name": "Larry" },{ "name": "Curly" },{ "name": "Moe" }]
    }
    
    var source   = $("#entry-template").html();
    var compiled = dust.compile(source, "intro");
    dust.loadSource(compiled);
    
    dust.render("intro", data, function(err, out) {
        $("#entry-template").html(out);
    });
});