Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 3, 2015 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codecademydev/77343c6de4d9b3cd48a7 to your computer and use it in GitHub Desktop.
Save codecademydev/77343c6de4d9b3cd48a7 to your computer and use it in GitHub Desktop.
Codecademy export
<!doctype html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,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="Top10App">
<div class="header">
<div class="container">
10
</div>
</div>
<div class="main" ng-controller="MainController">
<div class="container">
<div class="content">
<div ng-repeat="show in shows" >
<div class="rank">{{$index + 1}}</div>
<tv-show info="show"></tv-show>
</div>
</div>
</div>
</div>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
<!-- Directives -->
<script src="js/directives/shows.js"></script>
<!-- Services -->
<script src="js/services/tvShows.js"></script>
</body>
</html>
app.controller('MainController', ['$scope','shows', function($scope, shows) {
shows.success(function(data){
$scope.shows=data;
});
}]);
<div class="img_container">
<img class="img-responsive" ng-src="{{info.series_img}}" >
</div>
<h2 class="series">{{info.series}} </h2>
<p class="genre">{{info.genre}} </p>
<p class="run-start">{{info.run_start}} </p>
<p class="description">{{info.descirption}} </p>
app.factory('shows', ['$http', function($http){
return $http.get('https://s3.amazonaws.com/codecademy-content/courses/ltp4/shows-api/shows.json').success(function(data) {
return data;
}).error(function(err) {
return err;
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment