-
Notifications
You must be signed in to change notification settings - Fork 0
/
title.html
74 lines (61 loc) · 2.45 KB
/
title.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html ng-app="SleepOrDie">
<head>
<meta charset="utf-8">
<title>Ratchet template page</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link href="./css/ratchet.css" rel="stylesheet">
<script src="./js/ratchet.js"></script>
<!--<script src="./js/push.js"></script>-->
<!--<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>-->
<!--<script src="js/angular.1.3.14.min.js"></script>-->
<script src="js/controller.js"></script>
<script>
window.addEventListener('push', pageHandler);
//window.onload = pageHandlerTitle();
</script>
</head>
<body ng-controller="MainCtrl">
<!--When Ratchet finds a link, it replaces the 'bar' and 'contents' elements inside this page-->
<!--with the 'bar' and 'contents' elements inside the page that wants loading-->
<!-- Make sure all your bars are the first things in your <body> -->
<header class="bar bar-nav">
<h1 class="title">Sleep or Die</h1>
</header>
<nav class="bar bar-tab">
<a class="tab-item active" href="#">
<span class="icon icon-home"></span>
<span class="tab-label">Home</span>
</a>
<a class="tab-item" href="#">
<span class="icon icon-person"></span>
<span class="tab-label">Profile</span>
</a>
<a class="tab-item" href="#">
<span class="icon icon-star-filled"></span>
<span class="tab-label">Favorites</span>
</a>
<a class="tab-item" href="./page-settings.html">
<span class="icon icon-gear"></span>
<span class="tab-label">Settings</span>
</a>
</nav>
<!-- Make sure all your bars are the first things in your <body> -->
<!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->
<div class="content">
<div>
<img src="./img/rabbit.jpg" alt=""
style="margin-left: auto; margin-right:auto; display: block; height: 30%;"/>
</div>
<div>
<a id="b_name" class="btn btn-primary btn-block">Name: Unnamed</a>
<a class="btn btn-primary btn-block">Block button</a>
<a class="btn btn-primary btn-block">Block button</a>
</div>
</div>
</body>
</html>