Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created August 26, 2011 18:34
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 simenbrekken/1174082 to your computer and use it in GitHub Desktop.
Save simenbrekken/1174082 to your computer and use it in GitHub Desktop.
Mustache :(
{{#sites}}
<table class="common-table">
<thead>
<tr>
<th>Site name</th>
<th colspan="2">Store name</th>
</tr>
</thead>
<tbody>
{{#sites}}
<tr>
<td><a href="/sites/{{_id}}">{{name}}</a></td>
<td>{{_id}}</td>
<td class="row-actions">
<a href="#" class="btn small">Delete</a>
<a href="#" class="btn small">Settings</a>
</td>
</tr>
{{/sites}}
</tbody>
</table>
{{/sites}}
{{^sites}}
No sites!
{{/sites}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment