Created
August 15, 2014 23:21
-
-
Save danlister/19889d0481d9368a4ab0 to your computer and use it in GitHub Desktop.
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
@{ | |
<ul> | |
@foreach (var hole in holes) | |
{ | |
<li> | |
Tee: @hole.Name | |
<ul> | |
<li>Par: @hole.Par</li> | |
<li>Stroke Index: @hole.StrokeIndex</li> | |
<li>Distance: @hole.Distance yards</li> | |
</ul> | |
</li> | |
} | |
</ul> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment