Last active
June 29, 2018 13:46
-
-
Save techkuz/ab2424e8d959f87989c4b97cc15d86c3 to your computer and use it in GitHub Desktop.
jinja with mustache(or handlebars) templates
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
# in your template put all your mustache code inside this raw tags | |
{% raw %} | |
<script type="text/template" id="company-template"> | |
<a href="#companies/{{id}}/jobs" class="list-group-item"> | |
<h4 class="list-group-item-heading">{{name}}</h4> | |
<p class="list-group-item-text">{{description}}</p> | |
</a> | |
</script> | |
{% endraw %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment