Skip to content

Instantly share code, notes, and snippets.

@Dyrits
Forked from codecademydev/MainController.js
Last active May 10, 2023 08:06
Show Gist options
  • Save Dyrits/8d388bcaa0b60a67c4a62bb738f3bbe4 to your computer and use it in GitHub Desktop.
Save Dyrits/8d388bcaa0b60a67c4a62bb738f3bbe4 to your computer and use it in GitHub Desktop.
Bolt Network 1

Bolt Network 1

Bolt Network wants to create an AngularJS app for their program pages, check out a live preview of this app here. The program page displays information about a show’s airing time on the network.

const app = angular.module("BoltNetworkApp", []);
<!doctype html>
<html>
<head>
<link href="https://content.codecademy.com/projects/bootstrap.min.css" rel="stylesheet" />
<link href='https://fonts.googleapis.com/css?family=Oxygen:300,400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat: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="BoltNetworkApp">
<div class="header">
<div class="container">
<img src="img/logo.svg" width="180" height="34">
</div>
</div>
<div class="main" ng-controller="MainController">
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-3" class="series_img">
<img ng-src="{{ program.series_img }}" />
</div>
<div class="col-md-6">
<h1 class="series">{{ program.series }}</h1>
<h2 class="episode">{{ program.episode }}</h2>
<p class="description">{{ program.description }}</p>
</div>
<div class="col-md-3">
<ul class="list-group">
<li class="list-group-item"><span>Date:</span>{{ program.datetime | date}}</li>
<li class="list-group-item"><span>On air:</span>{{ program.datetime | date:'EEEE'}}</li>
<li class="list-group-item"><span>Time:</span>{{ program.datetime | date:'shortTime'}}</li>
<li class="list-group-item"><span>Season:</span>{{ program.season}}</li>
<li class="list-group-item"><span>Genre:</span>{{ program.genre}}</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-3">
<h3>Bolt</h3>
<ul>
<li>Careers</li>
<li>Terms</li>
<li>Help</li>
</ul>
</div>
<div class="col-md-3">
<h3>More Bolt</h3>
<ul>
<li>Gift Cards</li>
<li>Trailers</li>
</ul>
</div>
<div class="col-md-3">
<h3>News</h3>
<ul>
<li>Blog</li>
<li>Twitter</li>
<li>YouTube</li>
<li>Google+</li>
<li>Facebook</li>
</ul>
</div>
</div>
</div>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
</body>
</html>
app.controller('MainController', ['$scope', function($scope) {
$scope.program = {
series: "Sherlock",
series_img: "img/sherlock.jpg",
genre: "Crime drama",
season: 3,
episode: "The Empty Hearse",
description: "Two years after his reported Reichenbach Fall demise, Sherlock, who has been cleared of all fraud charges against him, returns with Mycroft's help to a London under threat of terrorist attack. John has moved on and has a girlfriend, Mary Morstan. Sherlock enlists Molly to assist him, but when John is kidnapped by unknown assailants and is rescued by Sherlock and Mary, John returns to help find the terrorists and an underground plot to blow up the Houses of Parliament during an all night sitting on Guy Fawkes Night.",
datetime: new Date(2014, 11, 31, 21, 00, 00, 00)
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment