28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" ng-app="app">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="author" content="Thomotron">
|
|
<meta name="keywords" content="mate,counter,loky244">
|
|
<title>Mate Counter</title>
|
|
|
|
<link rel="stylesheet" href="stylesheets/default.css">
|
|
|
|
<script src="scripts/angular.min.js" type="application/javascript"></script>
|
|
<script src="scripts/app.js" type="application/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container" ng-controller="mates">
|
|
<div class="above">Loky has</div>
|
|
<div class="count" ng-disabled="cooldown" ng-click="countClick()">
|
|
{{mates}}<br/>
|
|
<div class="timeRemainingBar" ng-style="countdownStyle"></div>
|
|
</div>
|
|
<div class="below">{{matesText()}}</div>
|
|
<div class="lastAdded" ng-show="lastMate">Last mate: {{lastMate | date:'medium'}}</div>
|
|
</div>
|
|
</body>
|
|
</html>
|