blob: 2125ada91bca93fe97cac4e161af317979b68b84 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>@APP_NAME@</title>
<!--NOTE:
jquery.js and tizen-web-ui-fw.js must be included.
DO NOT REMOVE below code!
-->
<script src="@LIBDIR@/jquery.js"></script>
<script src="@LIBDIR@/tizen-web-ui-fw-libs.min.js"></script>
<script src="@LIBDIR@/tizen-web-ui-fw.min.js"
data-framework-theme="tizen-gray"></script>
<!--NOTE:
Additional scripts and css files are to be placed here.
You can use jQuery namespace($) and all functionalities in jQuery
in your script. For example:
<script src="main.js"></script>
<link rel="stylesheet" href="my.css">
When you want to manipulate elements in your code, you have to
use domReady for your code to work properly, like this;
domReady(function(){ ... });
-->
</head>
<body>
<div data-role="page" id="template-page">
<div data-role="header">
<h1>Web UI Framework - Template application</h1>
</div>
<div data-role="content">
<p>This application is an empty starting point.</p>
</div> <!-- /content -->
</div> <!-- /page -->
</body>
</html>
|