JSFiddle - React, Tailwind, and code Playground
by kyllle
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<div class="js-output"></div>
<script type="text/html" id="tmpl">
<p><%= name %></p>
<p><%= phone %></p>
<p><%= email %></p>
</script>
JavaScript
console.clear();
var contact = {
name: 'kyle houston',
phone: '0123 123 123',
email: '[email protected]'
}
var template = _.template($('#tmpl').html());
$('.js-output').html(template(contact));