Created
July 3, 2018 10:55
-
-
Save vinodselvin/51e915ad422af918b625133d860a0d73 to your computer and use it in GitHub Desktop.
JS Templating by Vinod Selvin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="user-profile-template" class="hidden"> | |
<div class="wrapper"> | |
<h4>${data.title}</h4> | |
<div>${data.desc}</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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