-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html ng-app="RepoApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<title>lb08abu AngularJS Repo</title>
</head>
<body>
<div class="container">
<h1 class="text-center">AngularJS Repository</h1>
<h3 class="text-center">A repository homepage for the Coursera course <a href="https://www.coursera.org/learn/single-page-web-apps-with-angularjs/home/welcome">Single Page Web Applications with AngularJS</a></h3>
<h4 class="text-center"><em>By Lewis Belcher</em></h4>
<!-- implement a carousel like:
http://bootsnipp.com/snippets/featured/carousel-extended or
http://bootsnipp.com/snippets/featured/colourful-tabbed-slider-carousel
-->
<div class="" ng-controller="AssignmentContoller as assCtrl">
<div class="row" ng-repeat="ass in assCtrl.assignments">
<div class="col-xs-12 col-sm-8">
<h3><a ng-href="{{assCtrl.getAssignmentPath($index)}}" target="_blank">{{ass.title}}</a></h3>
<p>
{{ass.description}}
</p>
</div>
<div class="col-sm-4 hidden-xs">
<a ng-href="{{assCtrl.getAssignmentPath($index)}}" target="_blank">
<img ng-src="img/{{ass.dir}}-screenshot.png" alt="{{ass.name}} image" class="img-rounded" width="300"/>
</a>
</div>
</div>
</div>
</div>
<script src="scripts/angular.min.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>
Contact GitHub API Training Shop Blog About
© 2016 GitHub, Inc. Terms Privacy Security Status Help