Skip to content

Instantly share code, notes, and snippets.

@ZachMoreno
Created December 1, 2014 21:42
Show Gist options
  • Save ZachMoreno/11e845ba3eba04e8da1a to your computer and use it in GitHub Desktop.
Save ZachMoreno/11e845ba3eba04e8da1a to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head></head>
<body>
<ol ng-repeat="day in root">
<li>{{ day.name }}
<ol ng-repeat="category in day.categories">
<li>{{ category.name }}
<ol ng-repeat="item in category.items">
<li>{{ item.name }}
<ol ng-repeat="subitem in item.subitems">
<li>{{ subitem.name }}</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment