Created
October 16, 2015 23:28
-
-
Save michaltakac/5ba9440f32b59f308df4 to your computer and use it in GitHub Desktop.
Braintree demo - dashboard.html (v1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="dashboard"> | |
<div class="template-dashboard"> | |
<div class="page-header"> | |
<h1>Dashboard</h1> | |
</div> | |
<ul class="list-group"> | |
{{#each items}} | |
<li class="list-group-item">{{ name }} <span class="label label-default">{{ rating }}</span></li> | |
{{/each}} | |
</ul> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment