-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="css/pq.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="js/pq.js"></script>
<title>Pane Quotidiano</title>
</head>
<body>
<div data-role="page" id="cronoPage">
<div data-role="header">
<h1>Pane Quotidiano</h1>
</div>
<div data-role="main" class="ui-content">
<a href="raccolta.php" class="ui-btn ui-corner-all ui-shadow" data-ajax="false">Raccolta</a>
<a href="distribuzione.php" class="ui-btn ui-corner-all ui-shadow" data-ajax="false">Distribuzione</a>
</div>
<div data-role="footer">
</div>
</div>
</body>
</html>