-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<script>
// Copyright (C) 2011 Kevin M Roth, Artwork by Tim McGuire
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details. <http://www.gnu.org/licenses/>
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Swipe</title>
<!-- link stylesheets first -->
<link rel="stylesheet" href="stylesheets/touch.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="stylesheets/main.css" type="text/css" media="screen" title="no title" charset="utf-8">
<!-- rename sencha-touch.js to touch.js so that it compiles properly on Blackberry -->
<script src="javascripts/touch.js" type="text/javascript" charset="utf-8"></script>
<!-- add all of our code after the touch.js file -->
<script src="javascripts/index.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<!-- Nothing goes here, Sencha Touch handles all the styling and content. This body stays empty -->
</body>
</html>