Skip to content

Instantly share code, notes, and snippets.

@johnlindquist
Created May 26, 2015 11:32
Show Gist options
  • Save johnlindquist/f65d1c93be9b04cb16a7 to your computer and use it in GitHub Desktop.
Save johnlindquist/f65d1c93be9b04cb16a7 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en" ng-app="workshop">
<head>
<meta charset="UTF-8">
<title>AngularJS Jumpstart</title>
<link rel="stylesheet" href="bootstrap.min.css"/>
<script src="angular.js"></script>
<script src="workshop.js"></script>
<script src="food.js"></script>
</head>
<body ng-controller="BodyController as body">
<div ng-repeat="meal in body.menu">{{meal.name}}</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment