Last active
August 29, 2015 13:56
-
-
Save opheliasdaisies/9107236 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
<!DOCTYPE html> | |
<html ng-app="lifeApp"> | |
<head> | |
<title>The Game of Life</title> | |
<link href="/css/normalize.css" type="text/css" rel="stylesheet"> | |
<link href="/css/app.css" type="text/css" rel="stylesheet"> | |
<script src="lib/jquery/jquery-1.10.2.min.js"></script> | |
<script src="lib/angular/angular.min.js"></script> | |
<script src="lib/angular/angular-route.min.js"></script> | |
<script src="lib/angular/angular-resource.min.js"></script> | |
<script src="js/app.js"></script> | |
<script src="js/controllers.js"></script> | |
</head> | |
<body> | |
<h1>The Game of Life</h1> | |
<div ng-view></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment