Skip to content

Instantly share code, notes, and snippets.

@techkuz
Last active June 29, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techkuz/ab2424e8d959f87989c4b97cc15d86c3 to your computer and use it in GitHub Desktop.
Save techkuz/ab2424e8d959f87989c4b97cc15d86c3 to your computer and use it in GitHub Desktop.
jinja with mustache(or handlebars) templates
# 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