Created
August 10, 2015 13:55
-
-
Save mbuttler/86a1cab13c527aadf14a to your computer and use it in GitHub Desktop.
outbox - index
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,300,700' 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="OutboxApp"> | |
<div class="header"> | |
<div class="container"> | |
<img src="img/logo.svg" width="140" height="150"> | |
</div> | |
</div> | |
<div class="main" ng-controller="HomeController"> | |
<div class="container"> | |
<div class="email" ng-repeat="email in emails"> | |
<span class="from"> {{ email.from }} </span> <span class="subject"> {{email.subject }} </span><span class="date"> {{ email.datetime | date }} </span> | |
</div> | |
</div> | |
</div> | |
<!-- Modules --> | |
<script src="js/app.js"></script> | |
<!-- Controllers --> | |
<script src="js/controllers/HomeController.js"></script> | |
<!-- Services --> | |
<script src="js/services/emails.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DId you include
in the index page? I don't see it.