-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 903 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 903 Bytes
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
<!DOCTYPE html>
<html ng-app="clock">
<head>
<meta charset="utf-8"/>
<title>Clock 24h</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<script src="node_modules/angular/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controller/clockController.js"></script>
</head>
<body>
<header class="navbar-fixed-top bg-primary">
<h3>{{header}}</h3>
</header>
<div ng-controller="clockController" id="container">
<div id="canvas">
<canvas ng-show="active" id="clock">Seu navegador não tem suporte ao canvas!</canvas>
</div>
<div id="button">
<button type="button" class="btn btn-primary" ng-click="clickButton()">{{button}}</button>
</div>
</div>
<footer class="navbar-fixed-bottom bg-primary">
<h4>{{footer}}</h4>
</footer>
</body>
</head>