Skip to content

Instantly share code, notes, and snippets.

@tbrd
Created March 2, 2014 16:28
Show Gist options
  • Save tbrd/9309086 to your computer and use it in GitHub Desktop.
Save tbrd/9309086 to your computer and use it in GitHub Desktop.
Hashtags template
<table class="js-hashtags">
<thead>
<tr>
<th>Hashtag</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
{{#hashtags}}
<tr>
<td>#{{text}}</td>
<td>{{frequency}}</td>
</tr>
{{/hashtags}}
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment