Created
March 19, 2013 16:12
-
-
Save cacciatc/5197458 to your computer and use it in GitHub Desktop.
Partial template example.
This file contains 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
<tr> | |
<td> | |
{{players[0].points}} | |
</td> | |
<td> | |
{{players[0].name}} | |
</td> | |
<td> | |
{{players[0].post}} | |
</td> | |
<td> | |
{{players[0].slg}} | |
</td> | |
<td> | |
{{players[0].obp}} | |
</td> | |
<td> | |
<img ng-src="img/det.gif" width="21px"/> | |
{{players[0].team}} | |
</td> | |
</tr> | |
<tr> | |
<td> | |
{{players[1].points}} | |
</td> | |
<td> | |
{{players[1].name}} | |
</td> | |
<td> | |
{{players[1].post}} | |
</td> | |
<td> | |
{{players[1].slg}} | |
</td> | |
<td> | |
{{players[1].obp}} | |
</td> | |
<td> | |
<img ng-src="img/mil.gif" width="21px"/> | |
{{players[1].team}} | |
</td> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment