Created
August 8, 2015 13:49
-
-
Save mbuttler/b75bcea5477a485c4b8a to your computer and use it in GitHub Desktop.
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://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet" type="text/css"> | |
<link href="css/main.css" rel="stylesheet"> | |
<script src="js/vendor/angular.min.js"></script> | |
</head> | |
<body ng-app="FeedsterApp"> | |
<div class="header"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-2"> | |
<h1>feedster</h1> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="posts" ng-controller="PostController"> | |
<div class="container"> | |
<div ng-repeat="post in posts" class="post"> | |
<feedster-post post="post"></feedster-post> | |
<plusOne></plusOne> | |
</div> | |
</div> | |
</div> | |
<!-- Modules --> | |
<script src="js/app.js"></script> | |
<!-- Controllers --> | |
<script src="js/controllers/PostController.js"></script> | |
<!-- Directives --> | |
<script src="js/directives/feedsterPost.js"></script> | |
<script src="js/directives/plusOne.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment