JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script id="movieTemplate" type="text/x-jquery-tmpl">
    <li><b>Name</b> ${Name}</li>
    <li><b>Release Year</b> ${ReleaseYear}</li>
    <li><b>Adjusted Box Office</b> ${AdjustedBoxOffice}</li>
    <li><b>Real Box Office</b> ${RealBoxOffice}</li>
</script>
<ul id="movieList"></ul>

JavaScript

var movie = { 
    Name: "Star Wars", 
    ReleaseYear: "1977",
    AdjustedBoxOffice: "$1,416,050,800",
    RealBoxOffice: "$460,998,007"
};

$( "#movieTemplate" ).tmpl( movie )
        .appendTo( "#movieList" );