-
Notifications
You must be signed in to change notification settings - Fork 3
/
folha-de-ponto.html
36 lines (33 loc) · 1.49 KB
/
folha-de-ponto.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>Folha de Ponto</title>
<link rel="apple-touch-icon" href="imagens/icon_57x57.png"/>
<link rel="apple-touch-startup-image" href="imagens/startup.jpg" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.structure-1.3.2.min.css">
<link rel="stylesheet" href="css/jquery.mobile-1.3.2.min.css" />
<link rel="stylesheet" href="theme-folha-de-ponto/folha-de-ponto.min.css" />
<link rel="stylesheet" type="text/css" href="css/folha-de-ponto.css">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.mobile-1.3.2.min.js"></script>
<script src="js/folha-de-ponto.js"></script>
</head>
<body>
<div data-role="page" id="folha-de-ponto" data-add-back-btn="true">
<header data-role="header">
<h1>Folha de Ponto</h1>
</header>
<section data-role="content">
<div id="resultados"></div>
</section>
<footer data-role="footer" data-position="fixed">
<nav data-role="navbar">
</nav>
</footer>
</div>
</body>
</html>