JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/jquery/jquery-tmpl/master/jquery.tmpl.js"></script>

<div id="placeholder"></div>

<script id="tmpl" type="text/x-jquery-tmpl">
    {{if brother}}
        <input type="text" value="this guy likes blue" />
    {{else}}
        <input type="text" value="this guy likes arange" />
    {{/if}}
</script>

CSS

div{
    background-color: orange;
}

JavaScript

var stuff = {
    brother: fdsf
};

try {
    $("#tmpl").tmpl(stuff).appendTo("#placeholder");
} catch (ex) {
    $("#placeholder").append("Error on line " + ex.lineNumber + ": " + ex.message);
}