-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (38 loc) · 1.27 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
43
44
45
<html>
<head>
<title>Pink Duck</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="js/angular-1.2.js"></script>
<script type="text/javascript" src="js/angular-animate.js"></script>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body ng-app="iSammy" ng-controller="myController" ng-init="init()">
<div id="logo">
<h1><img src="images/pink-dock-logo.png" /><span id="title">Pink Duck</span></h1>
</div>
<div id="score">
<h2 id="you-recycled">You Recycled:</h2>
<h3 id="amount"><span id="number">{{totalGramsToDisplay|number:0}}</span><span id="gr">gr</span></h3>
</div>
<div class="badge" id="{{ badge }}" ng-show="showBadge">
<img src="images/{{ badge }}.png" />
<p>You Saved a {{ badge | ucfirst }}!</p>
</div>
<div id="footer">
<img src="images/itc-logo.png" />
</div>
<div class="new-recycle" ng-show="showNewRecycle">
<img src="images/{{newRecycleModel.type}}.png" />
<div class="content">
<h1>New Recycle!</h1>
<div class="type-sign">
<h2>{{ newRecycleModel.type | ucfirst }}</h2>
</div>
<div class="points-sign">
<h3>+<span class="amount">{{newRecycleModel.grams}}</span><span class="gr">gr</span></h3>
</div>
</div>
</div>
</body>
</html>