Skip to content

Instantly share code, notes, and snippets.

@vinodselvin
Created July 3, 2018 10:55
Show Gist options
  • Save vinodselvin/51e915ad422af918b625133d860a0d73 to your computer and use it in GitHub Desktop.
Save vinodselvin/51e915ad422af918b625133d860a0d73 to your computer and use it in GitHub Desktop.
JS Templating by Vinod Selvin
<div id="user-profile-template" class="hidden">
<div class="wrapper">
<h4>${data.title}</h4>
<div>${data.desc}</div>
</div>
</div>
<div id="user-profile-template" class="hidden">
<div class="wrapper">
<h4>Title</h4>
<div>Lorem ipsum dolor</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment