Skip to content

Instantly share code, notes, and snippets.

@cdeutsch
Created March 1, 2014 01:19
Show Gist options
  • Select an option

  • Save cdeutsch/9283351 to your computer and use it in GitHub Desktop.

Select an option

Save cdeutsch/9283351 to your computer and use it in GitHub Desktop.
@html.extend('layout', function(model){
@html.block('content', function(model){
<h2>@model.channel</h2>
<table class="table table-bordered">
@model.buffer.forEach(function(msg){
<tr>
<td>
@msg.nick
</td>
<td>
<small class="timestamp">@msg.date</small>
@msg.args[1]
</td>
</tr>
})
</table>
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment