Skip to content

Instantly share code, notes, and snippets.

@ohcibi
Last active December 12, 2015 12:09
Show Gist options
  • Save ohcibi/4770155 to your computer and use it in GitHub Desktop.
Save ohcibi/4770155 to your computer and use it in GitHub Desktop.
<script type="text/x-handlebars" data-template-name="rooms">
<ul id="rooms">
{{#each controller}}
<li>
<h1>{{name}}</h1>
{{ partial devices }}
</li>
{{/each}}
</ul>
</script>
<script type="text/x-handlebars" data-template-name="_devices">
{{#if devices}}
<ul class="devices">
{{#each device in devices}}
<li class="{{device.type}}">{{device.name}}</li>
{{/each}}
</ul>
{{/if}}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment