Skip to content

Instantly share code, notes, and snippets.

@code-for-coffee
Created February 4, 2015 05:51
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 code-for-coffee/4f341b0998aff4a0ac90 to your computer and use it in GitHub Desktop.
Save code-for-coffee/4f341b0998aff4a0ac90 to your computer and use it in GitHub Desktop.
Backbone Best Practices - Ch3 Table View
{{!-- view-table-template --}}
<div class="table-responsive">
<table class="table">
<thead>
{{#each column}}
{{this}}
{{/each}}
</thead>
<tbody id="{{tbody-id}}" class="{{tbody-class}}">
{{!-- filled by view-table-row-template --}}
</tbody>
</table>
</div>
{{!-- end view-table-template --}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment