Skip to content

Instantly share code, notes, and snippets.

@danlister
Created August 15, 2014 23:21
Show Gist options
  • Save danlister/19889d0481d9368a4ab0 to your computer and use it in GitHub Desktop.
Save danlister/19889d0481d9368a4ab0 to your computer and use it in GitHub Desktop.
@{
<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