Created
August 7, 2015 23:58
-
-
Save mbuttler/87bafabc9abaf9b7a8b4 to your computer and use it in GitHub Desktop.
gameboard 1 index.html
This file contains hidden or 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> | |
| <head> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300' rel='stylesheet' type='text/css'> | |
| <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'> | |
| <link href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css" rel="stylesheet"> | |
| <link href="css/main.css" rel="stylesheet"> | |
| <script src="js/vendor/angular.min.js"></script> | |
| </head> | |
| <body ng-app="GameboardApp"> | |
| <div class="header"> | |
| <h1 class="logo">GameBoard</h1> | |
| </div> | |
| <div class="main" ng-controller="ScoreController"> | |
| <div class="container"> | |
| <div class="row" ng-repeat="score in scores"> | |
| <game info="score"></game> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Modules --> | |
| <script src="js/app.js"></script> | |
| <!-- Controllers --> | |
| <script src="js/controllers/ScoreController.js"></script> | |
| <!-- Directives --> | |
| <script src="js/directives/game.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment